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 408
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

It might be helpful to create a slice of โ€œInoperativeโ€ records from the GSE table.

I would make a slice to hold the Inoperative records, then use the slice to restrict the options for your reference by using a Valid If formula like this:

Inoperative_GSE_Slice[Tables_Key]

You can read more about slices here:

Hello
thanks but I have already created an inoperative slice.
in the maintenace form screen when I have to assign in the N.S column all the operative ones also appear

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
  )
)

Perfect!!!
thanks a lot!!!

Top Labels in this Space