I am making task management app. Some tasks are flow, so I made 4 columns, “Unique ID”, “Thing”, “After”, “Before”. “Before” is virtual column.
Actual data is like below
Expression of “After” is below. I can choose rows.
The expression of “Before” is below.
select(not done task[Thing], in([_thisrow].[Thing], [after]))
When I select “Eat breakfast” row, I can see the tables of “make coffee” and “make bread”.
I want to make view if I select “Eat breakfast”, I can directly see the list of “make coffee” and “make bread”.
I tried to make slice, the expression is below, but it shows nothing. Is something wrong?
IN([Thing], [_thisrow].[Before])
So sorry it is quite long sentence



