Filter ref

Hi everyone
I have a “MAINTENANCE” table with a column named “N.S” that refers to a “GSE” table.
In the table “GSE” .- (column “N.S” numbers), (column “STATE” inoperative).
In the “MAINTENANCE” table, how can I display only the numbers in the “N.S” column that are inoperative
In the “GSE” table?
thank you

Solved Solved
0 4 412
1 ACCEPTED SOLUTION

For the Valid If expression for the N.S column of the MAINTENANCE table, try:

SORT(
  SELECT(
    GSE[N.S],
    AND(
      ISNOTBLANK([STATE]),
      ([STATE] = "inoperative")
    ),
    TRUE
  )
)

View solution in original post

4 REPLIES 4
Top Labels in this Space