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 440
  • 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