Conditional Actions for Row Selection Possible?

Is it possible to create a conditional action for row selection? For example, i have different views for patients depending on whether they are alive or deceased. I'd like to be able to go to a different view when a row is selected based on the value of the [Status] column for that row. I don't immediately see a way to be able to do this without creating a new slice just for deceased patients and crafting a linktofilteredview() action for the patients.

I may have just answered my own question with that linktofilteredview() thing up there... Lemme try a few expressions ๐Ÿค”


mykrobinson_0-1687536753575.png

 

Solved Solved
0 1 76
1 ACCEPTED SOLUTION

IF( [status]='alive' , LINKTOVIEW('a') , LINKTOVIEW('b') )

View solution in original post

1 REPLY 1

IF( [status]='alive' , LINKTOVIEW('a') , LINKTOVIEW('b') )

Top Labels in this Space