Expand my Community achievements bar.

Order form

Avatar

Level 1

I've been Googling all afternoon.  I can't figure out how to do this.

Here is a VERY bare-bones stripped down version of my "order form."

My question is this:

How do I only print fields that are filled in?

Example completed form:

ItemA - ______

ItemB -     1     

ItemC - ______

ItemD -     1     

The form would print like this:

ItemB -     1     

ItemD -     1     

My other idea was to have a check box at the start of each line.  If the box is checked, it prints.

Thanks for any help/ideas

1 Reply

Avatar

Level 10

You may try like this on the Print button..

if(itemA.rawValue == "" || itemA.rawValue == null)

     itemA.relevant = "-print";

Thanks

Srini