if statement to prevent 'null' ?

if statement to prevent 'null' ?

Hi, I've got this form working almost exactly how I want it to... But if there is any way i can tell it not to include null fields... That would be great. Is the a feature? I'm not able to find some kind of if(not(isblank(input.FIeld)))...

Domain: wesmar.zohosites.com

Form name: New Order

This is the script in editor (rich text):

  1. <%=input.Quantity1%> x <%=input.Size1%> of  <%=input.Name1%>

    <%=input.Quantity2%> x <%=input.Size2%> of  <%=input.Name2%>

    <%=input.Quantity3%> x <%=input.Size3%> of  <%=input.Name3%>

    <%=input.Quantity4%> x <%=input.Size4%> of  <%=input.Name4%>

    <%=input.Quantity5%> x <%=input.Size5%> of  <%=input.Name5%>

And this is the output if the only fields inputted are  input.Quantity1,  input.Size1,  input.Name1

  1. 5 x 220 Gallon Tote of DFOAM

     

    null x null of 

     

    null x null of 

     

    null x null of 

     

    null x null of 



Thanks