Open view/form after creation of a row from an action button

I've added an action of type: 

DroidTeo_0-1670363746841.png

Is it possible to open the detail view or the update form of this line just after? 

If yes, how can I do this?

Solved Solved
0 3 113
1 ACCEPTED SOLUTION

In the end, instead of creating the new line and the try to open the view, I decide to use the LINKTOFORM expression:

LINKTOFORM("MyFor",
"Field1", [_ThisRow].[Field1],
"Field2", [_ThisRow].[Field2],
etc, 
etc, 
)

View solution in original post

3 REPLIES 3

You can create a composite Action type to achieve this:

Step 1: Create an action to add row (similar to what you have in your screenshot)

Step 2: Create an action to navigate to the detail system view see doc 

Step 3: Create a composite action and add above two actions to it see doc

@aneeshatgoogle thank you! 
Actually I didn't think about this possibility.. 

But, is it possible to open the detail form of the just created line? 
I mean, in this case, I should use the ID of the just created row.. right? 

In the end, instead of creating the new line and the try to open the view, I decide to use the LINKTOFORM expression:

LINKTOFORM("MyFor",
"Field1", [_ThisRow].[Field1],
"Field2", [_ThisRow].[Field2],
etc, 
etc, 
)
Top Labels in this Space