Conditional Masking on Ticket Designs

Hello everyone,

I'm at work on revising the ticket design document and I'm in need of some conditional masking examples.  If you are using conditional masking, would you share what you are doing and how you are doing it (i.e. what code you entered in to the Mask field)?

Many thanks,
Kevin

Parents
  • Hi Kevin

    On our Post dockets we only wanted to display the Country field if the address was NOT in Australia. So on our Post docket format we put a mask on the field "Country Long":

    If(val = 'Australia', '', upper(val))

    So if the country is Australia then nothing is printed, else the Country is printed in UPPERCASE.

Reply
  • Hi Kevin

    On our Post dockets we only wanted to display the Country field if the address was NOT in Australia. So on our Post docket format we put a mask on the field "Country Long":

    If(val = 'Australia', '', upper(val))

    So if the country is Australia then nothing is printed, else the Country is printed in UPPERCASE.

Children
No Data