Tiles to Tabs

I am displaying data in tile view and need to link each tile to an existing tab.

How do I do this?

There is only one action button and it redirects all the tiles to the same tab.

I want to specifiy a different tab for each tile.

Create a custom action, and use a conditional branch for each tile. For example:

  • if tile equals 1, Go To Tab A
  • if tile equals 2, Go To Tab B
  • etc
1 Like