Select() specific rows from a slice

Hi,

i have a question relative to the use of select() function from a slice.

I have different tables ยซ data ยป, ยซ filter ยป, ยซ dashboard ยป.

i have created a slice ยซ data_filtered ยป based on the input from de ยซ filter ยป table. It works well.

then, I would like to create a ยซ dashboard ยป from the data_filtered slice with the use of select().

my dashboard table has a virtual column ยซ profits ยป which has this kind of function:

Sum(select(data[profits], [category]=[_THiSROW].[category_select]))

it works well. However I would like to use the slice ยซ data_filtered ยป instead of the data, and by changing data[profits] in data_filtered[profits], it does not work.

any idea?

0 2 206
2 REPLIES 2

by changing data[profits] in data_filtered[profits], it does not work.


That should work. How did it not work?

 

I do not not know. However the results of the formula is empty

Top Labels in this Space