NAVIGATE BETWEEN MULTIPLE VIEWS

Please how can I navigate between views within an app(see screenshot below)

If I click East, it should go to East View, Click West to go West View and so on.

Achiever2023_0-1710811970072.png

 

Solved Solved
0 2 42
1 ACCEPTED SOLUTION

Hi, this is easy.

Create an action and use the following expression

IFS(

[Title] = "EAST PLANNING", LINKTOVIEW("VIEW NAME"),

[Title] = "WEST PLANNING", LINKTOVIEW("VIEW NAME"),

[Title] = "NORTH PLANNING", LINKTOVIEW("VIEW NAME")

)

You just need to pay attention to rename everything correctly.
After that you go to this gallery view, scroll down and see the behaviour, there you'll choose the action you created, so everytime you click in a card you'll be taken to the view according to the "Title" (I don't know the right name for this column) 

View solution in original post

2 REPLIES 2

Hi, this is easy.

Create an action and use the following expression

IFS(

[Title] = "EAST PLANNING", LINKTOVIEW("VIEW NAME"),

[Title] = "WEST PLANNING", LINKTOVIEW("VIEW NAME"),

[Title] = "NORTH PLANNING", LINKTOVIEW("VIEW NAME")

)

You just need to pay attention to rename everything correctly.
After that you go to this gallery view, scroll down and see the behaviour, there you'll choose the action you created, so everytime you click in a card you'll be taken to the view according to the "Title" (I don't know the right name for this column) 

Thank you, it worked!

Top Labels in this Space