If false use user input expression help

Hello,

I have an initial question of : Is houskeeping relevant to your inspection?  yes/no

If True, the next set of questions appear each with an enum of Pass, fail, N/A, Not observed.    - This is my show if

 

Next step was trying to autofill  - this a am using in the app formula for the related question(s)

if [houskeeping relevant] is false, it is set to return N/A  Automatically for all related questions. - This works fine.

 

if [houskeeping relevant] is True, I would like the original enum of Pass, fail, N/A, Not observed to appear. 

This is failing to happen. What appears is  "pass" and it is uneditable.

 

How do i write this to say if true , Show the original question

 

an example of how i have tried to write it using one relevant column:

IF([Housekeeping_Relevant] = False,"N/A",[Heating Equipment])

 

 

Solved Solved
0 6 541
1 ACCEPTED SOLUTION

I'm not confident that I follow what you're trying to accomplish. Based on my interpretation, the following approach might work for what you need.

In each column:

  • Editable property: [Housekeeping relevant]
  • Initial value property: IFS(NOT({Housekeeping relevant]), "N/A")
  • (Optional) Show property: [Housekeeping relevant]

View solution in original post

6 REPLIES 6