START VIEW - condition

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.

Solved Solved
0 2 519
1 ACCEPTED SOLUTION

Steve
Platinum 4
Platinum 4
IF(
  ...,
  "UrgentStartView",
  "NormalStartView"
)

Replace ... with an expression that evaluates as TRUE if an urgent data is present.

View solution in original post

2 REPLIES 2

Steve
Platinum 4
Platinum 4
IF(
  ...,
  "UrgentStartView",
  "NormalStartView"
)

Replace ... with an expression that evaluates as TRUE if an urgent data is present.

Thank you Steve! That did the trick!

Top Labels in this Space