Dynamically Display Fields

I have made myself familiar with showif and isnotblank expressions but I cant get it to do what I am looking for.

I have a field titled 'Number of Deliveries' which has a drop down containing a list of numbers, 1 through 4.

If user selects '2' for example, then I want the next two columns to be shown which will be titled 'Store 1' & 'Store 2'. Similarly, if the user selects '3' from the drops down, the next 3 fields will be shown.

 

Can this be done?

 

Thanks in advance for everybody's help.

Solved Solved
0 4 203
1 ACCEPTED SOLUTION

It sound that you wish to show the stores fields based on the column [Number of Deliveries] such that

  •  if [Number of Deliveries]=1 , show [Store 1] column
  • if [Number of Deliveries]=2 , show [Store 1] and [Store 2] columns
  • if [Number of Deliveries]=3 , show [Store 1] , [Store 2]  and [Store 3] columns

If this understanding is correct, 

  • show_if for [Store 1] can be  [Number of Deliveries]>=1
  • show_if for [Store 2] can be  [Number of Deliveries]>=2
  • show_if for [Store 3] can be  [Number of Deliveries]>=3
  •  

                   

                 

View solution in original post

4 REPLIES 4
Top Labels in this Space