How can I do a view filter, and pass the formula in the slice

How can I do a view filter, and pass the formula in the slice. On ux it will only show the latest [Start Date] update of each [NIK]

Solved Solved
0 5 161
1 ACCEPTED SOLUTION

Try this as your sliceโ€™s Row filter condition expression:

(
  [_THISROW]
  = MAXROW(
    "table",
    "Start Date",
    AND(
      ISNOTBLANK([NIK]),
      ([NIK] = [_THISROW].[NIK])
    )
  )
)

Replace table with the name of the table being sliced.

View solution in original post

5 REPLIES 5
Top Labels in this Space