Skip to main content
Participant
July 5, 2023
Answered

Hide/Show Line total(s)

  • July 5, 2023
  • 1 reply
  • 452 views

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. 

This topic has been closed for replies.
Correct answer JR Boulay

Use this script as a Custom Format script:

if (event.value == 0) {event.value = "";}

1 reply

JR Boulay
Community Expert
JR BoulayCommunity ExpertCorrect answer
Community Expert
July 5, 2023

Use this script as a Custom Format script:

if (event.value == 0) {event.value = "";}
Acrobate du PDF, InDesigner et Photoshopographe
CritzerAuthor
Participant
July 5, 2023

Thanks! It works!