Create multi-page condition

Samuel_Njenga_0-1658842441467.png

How can I set conditions to fulfil on the previous page before proceeding to the next page on AppSheet?.

 

Solved Solved
0 2 81
1 ACCEPTED SOLUTION

I am assuming you created pages in your form by using SHOW columns with category Page_Header, correct?

If so, then  you can easily use the Show_If expression of the Show Column.

For example, in your page 2's Show column, use this in the Show_If formula:

AND(
ISNOTBLANK([Pulse @ 300], 
ISNOTBLANK([Pulse @ 1000]), 
ISNOTBLANK(Pulse @ 2000]), 
ISNOTBLANK([Submitted By])
)

View solution in original post

2 REPLIES 2

I am assuming you created pages in your form by using SHOW columns with category Page_Header, correct?

If so, then  you can easily use the Show_If expression of the Show Column.

For example, in your page 2's Show column, use this in the Show_If formula:

AND(
ISNOTBLANK([Pulse @ 300], 
ISNOTBLANK([Pulse @ 1000]), 
ISNOTBLANK(Pulse @ 2000]), 
ISNOTBLANK([Submitted By])
)

Thanks for the solution

Top Labels in this Space