Save Form View

Upon saving a form, how can you create an action to go to a deck view filtering out everything other than the rows with the same title as the filled out form?

0 6 388
6 REPLIES 6

Hi @Dan_Oliphant,

Could you please explore following approach-

Assuming that title is a text type column, you could create an event action on form save of LINKTOFILTEREDVIEW() type

The action of โ€œgo to another view within the appโ€ could have syntax something like

LINKTOFILTEREDVIEW(โ€œYour Deck View Nameโ€, [Title]= โ€œPizza Restaurantsโ€) and prominance as โ€œdo not displayโ€

In general the above action should filter and show only those records in the deck view that have title column as โ€œPizza Restaurantsโ€

Please enable the action under UX --> Viewโ€“> Form View Pane โ€”>Behavior --> Event Actions

2X_0_0cd44a8cc8a937e1f3bc8fb9a96977ef06fa20ce.png

Please do post with more details if you are looking for something else.

This is perfect. But how would express โ€œPizza Restaurantsโ€ as the title of the form I just submitted? [_THISROW].[title]

LINKTOFILTEREDVIEW(โ€œYour Deck View Nameโ€, [Title]= โ€œPizza Restaurantsโ€)

Is the form and deck view belonging to the same table? Then only [Title]= โ€œPizza Restaurantsโ€ should suffice.

EDIT: I am sorry, yes you are correct, the syntax will be something like

LINKTOFILTEREDVIEW(โ€œYour Deck View Nameโ€, [Title]= [_THISROW].[Title] )

here is a video of what i am trying to accomplish. Thanks for being so helpful

I posted this before I saw your reply

You are welcome and no problem. Hope you are able to get the desired behavior.

Top Labels in this Space