Expression to filter a slice

Hi,

I want to create a slice based on some specific row-column. I have a table with columns - Invoice Date, Start Date and End Date. I want to filter data based on the value of Row # 2 of Column Start Date and End Date. How can I refer to this specific Row and column in my filter expression?

Thank you very much.

Solved Solved
1 2 357
1 ACCEPTED SOLUTION

Maybe this:

ANY( SELECT(
  table[column] ,
  [_RowNumber] = 2
) )

View solution in original post

2 REPLIES 2

Maybe this:

ANY( SELECT(
  table[column] ,
  [_RowNumber] = 2
) )

Thank you very much. This is the expression I was looking for.

Top Labels in this Space