December 12, 200619 yr Is there a way to have multiple merge fields to Sliding/Printing. eliminating the blank spaces between the merge fields. I have a solution that needs to print out an invoice based off of multiple fields. As the fields are pulled from the "job ticket" they are put into an invoice to be billed. Example: <> data present <> no data < data present < no data < data present < no data Wish it would look like this... Widget A 3.5 x 4.25 10.00 Not look like this... Widget A 3.5 x 4.25 10.00 I need to keep the space to the right of the fields as well as the space between the differnt fields. How can i get the sliding/printing to skip those spaces without data in them?
December 13, 200619 yr You could string everything in a calc. quote_description_1 & Case ( not IsEmpty ( quote_description_2 ) ; ¶ & quote_description_2 ) & Case ( not IsEmpty ( quote_size_1 ) ; ¶ & quote_size_1 ) & Case ( not IsEmpty ( quote_size_2 ); ¶ & quote_size_2 ) & Case ( not IsEmpty ( quote_amount_1 ); ¶ & quote_amount_1 ) & Case ( not IsEmpty ( quote_amount_2 ); ¶ & quote_amount_2 )
Create an account or sign in to comment