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 291
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