Restricting Primary Action in Dashboard Views

Friends, I have a question. Is it possible to limit the action you see there, as “primary,” to one of the two views in this Dashboard or at least have it shown only once?

The action is of type LINKTOVIEW() set as Primary.

I have tried several things, including:

CONTEXT("Table") = "NameOfTable"

AND( CONTEXT("Table") = "NameOfTable", CONTEXT("View") = "NameOfDashboard" )

AND( CONTEXT("View") = "NameOfViewInDashboard", CONTEXT("View") = "NameOfDashboard" )

Obviously, it won’t work this way. Does anyone know a method?

You can control it by using a Slice as the datasource. Maybe you are already? In the Slice configuration you can explicitly list the actions you want available. All other actions will NOT be made available to any views based on that Slice.

If you are NOT already using a Slice, then create one - even if it needs to be a duplicate of the table. Then adjust the action list.

I hope this helps!

2 Likes

This is exactly what I needed and I really appreciate it my friend. Thanks for your quick response.

1 Like