Let’s say I have a view in which urgent data is pushed. This would be my start view. But if there is no urgent data in this view (based on slice row criteria) then I would like to switch to a different start view.
How is this achievable?
Thanks.
Let’s say I have a view in which urgent data is pushed. This would be my start view. But if there is no urgent data in this view (based on slice row criteria) then I would like to switch to a different start view.
How is this achievable?
Thanks.
IF(
...,
"UrgentStartView",
"NormalStartView"
)
Replace ... with an expression that evaluates as TRUE if an urgent data is present.
Thank you Steve! That did the trick!