How to assign row selected action to different rows in deck view?

Hello. I can assign row selected action in a deck view as u can see below. But each row directs to the same action. I want each row to behave as another action(LINKTOVIEW). When you touch each row on the view below, i want the app to take u different views.

3X_c_1_c1a53f5b77fbaa09d18358a3a8f209033ae0cff7.jpeg

Solved Solved
0 1 82
1 ACCEPTED SOLUTION

Steve
Platinum 4
Platinum 4

Use a conditional expression in the actionโ€™s Target setting to choose the target according of the row selected:

SWITCH(
  [Name],
  "Pointage",
    LINKTOVIEW("Pointage"),
  "Daily Control View",
    LINKTOVIEW("Daily Control View"),
  "Monthly Control View",
    LINKTOVIEW("Monthly Control View"),
  ""
)

See also:

View solution in original post

1 REPLY 1

Steve
Platinum 4
Platinum 4

Use a conditional expression in the actionโ€™s Target setting to choose the target according of the row selected:

SWITCH(
  [Name],
  "Pointage",
    LINKTOVIEW("Pointage"),
  "Daily Control View",
    LINKTOVIEW("Daily Control View"),
  "Monthly Control View",
    LINKTOVIEW("Monthly Control View"),
  ""
)

See also:

Top Labels in this Space