Copy link to clipboard
Copied
Hello,
We currently have every line totaling from the Calculate>Value is the product (x) of Price, partsqty. However, all the remaining unused line totals show 0.00. How can I hide the 0.00 totals for the lines not being used within the ticket?
Any help or guidance will be appreciated.
Copy link to clipboard
Copied
Use this script as a Custom Format script:
if (event.value == 0) {event.value = "";}
Copy link to clipboard
Copied
Use this script as a Custom Format script:
if (event.value == 0) {event.value = "";}
Copy link to clipboard
Copied
Thanks! It works!