Display next field when a specific answer is choosen

Hi Guys,

If status chosen is QUOTES (among 4 others)

then only i want the next field to be displayed..

 

How is this achieved?

0 1 33
1 REPLY 1

Hello @vicks88ster, you can do that by using a conditional expression in the SHOW_IF() constraint in your data columns, you can read more here:

https://help.appsheet.com/en/articles/961221-show_if-column-constraint

https://help.appsheet.com/en/articles/1135911-conditional-expressions

For example, you could write this on the "show_if" field of the column that you only want to show when the status is equal to QUOTES:

IF([Status]="QUOTES",TRUE,FALSE)

Top Labels in this Space