Gaps visible inside a pdf

How can I hide blank spaces inside a pdf?

I am using ‘if’ statements like given below:
<<If: ISNOTBLANK([Project Name])>>Project Name: <<[Project Name]>><>
<<If: ISNOTBLANK([Floor])>>Floor: <<[Floor]>><>
<<If: ISNOTBLANK([Unit No.])>>Unit No.: <<[Unit No.]>><>
So if these statements are ‘false’, I end up having large gaps within the pdf.

3X_d_1_d19a2e2a818bca416d8c30dff13fa589f0ea4e3d.png

0 5 133
5 REPLIES 5

Steve
Platinum 4
Platinum 4

Remember, everything outside the <<If>><<EndIf>> block will be included always, including the blank lines between the conditionals, and even the newlines at the end of the <<If>> lines!

Try this instead:

<<If: ISNOTBLANK([Project Name])>>
Project Name: <<[Project Name]>><<EndIf>><<If: ISNOTBLANK([Floor])>>

Floor: <<[Floor]>><<EndIf>><<If: ISNOTBLANK([Unit No.])>>

Unit No.: <<[Unit No.]>><<EndIf>>

It appears you need a space between <<If: and ISNOTBLANK([Floor])>>:

3X_0_5_058d0c84b4f33a800191a575ae94881d11bcc434.png

Having a space between ‘If:’ and ‘ISNOTBLANK()’ does not solve the problem.

Following gives no error:
3X_8_2_821a71bbf829b4d1c63aec4e72dc500aa6c0965e.png

Following gives an error:

3X_c_5_c50cc663b3b8976852c5db3d9f0a11473f574379.png

Error:

Following also gives an error:
3X_f_3_f3dd7001eda06144b310962a9ebcb8db5710be0a.png

Error:

Please contact support@appsheet.com for help with this.

Top Labels in this Space