Show if problem of columns that act as Show if. Need to be able to do many show if conditions

Hello everyone, I need help with Show if.
There are many types of problems that can be displayed.

like in this picture such as

If the language or words are used incorrectly Iโ€™m sorry I am not good at languages I use google translate

0 1 80
1 REPLY 1

Aurelien
Google Developer Expert
Google Developer Expert

Hi @fon

Assuming your column Type is set with type EnumList, so you can pick both A & B:
3X_8_a_8a9407e4a2411618b4554b6b101bb0434ae4b665.png

Then, your show_if expression for the column [Problem_WasteOfWork] will be:

  IN("A",[Type])

Also, it may be (if I understand correctly: you also want it displayed it B is chosen):

OR(
  IN("A",[Type]),
  IN("B",[Type])
)

For reference:

EDIT: correction of the expression (initial misunderstanding)

Top Labels in this Space