Action Display All or Nothing?

Hi,

I have a behavior logic that checks if a user has already performed an action and if they have the action will not be displayed.

NOT(IN(USEREMAIL(), VotesTable[Voter Email]))

However, Iโ€™m noticing this is doing it for the entire deck view, is it possible to have action items inline on some of the rows and not others?

0 1 289
1 REPLY 1

Yes thatโ€™s possible with an addition condition rule. Depending which way you want to do it, but for example this will show it only if the status is openโ€ฆ

AND(
[Status]=โ€œOpenโ€,
NOT(IN(USEREMAIL(), VotesTable[Voter Email]))
)

Top Labels in this Space