View releted

Hi everyone
in a related field how do I view only the data that has the status column โ€œopenโ€?
I donโ€™t want to display the data entered with closed
thank you

0 6 442
  • UX
6 REPLIES 6

Steve
Platinum 4
Platinum 4

Create an action of type App: got to another view in this app with a target of:

LINKTOFILTEREDVIEW(
  "MyView",
  SELECT(
    [Related somethings][RowKey],
    AND(
      ISNOTBLANK([Status]),
      ([Status] = "Open")
    )
  )
)

sorry
but maybe i said bad.
i donโ€™t want insert a action but i want insert a filter in the view modulo.

thanks
i resolved!!
i created a slices with a expression :[Status]=""

Thanks a lot

Should you type it like [Status]=โ€œOpenโ€?

exact!!!

Top Labels in this Space