Skip to main content
Participant
November 25, 2020
Question

Felder mit dem Wert 0,00€ ausblenden

  • November 25, 2020
  • 1 reply
  • 2424 views

Hallo zusammen, 

wie schaffe ich es, ein Feld auszublenden, wenn der Wert 0,00€ beträgt? Ich komme hier absolut nicht weiter... 

 

Das Formular soll als Vorlage für eine Rechnung dienen und sieht extrem blöd aus, wenn die Felder abgedruckt werden.

 

 Danke vorab für die Hilfe und viele Grüße, 

 

Maurice

 

 

This topic has been closed for replies.

1 reply

try67
Community Expert
Community Expert
November 25, 2020

I'm assuming you're using an automatic calculation for these fields.

If you're doing it with a script add the following to the end of it:

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

If you're using one of the other options for the calculation then use the code above as the custom Validation script of your fields.

Participant
November 25, 2020

Thanks for your quick answer. 

 

Your suggestion that i'm using the automatic calculation is correct.

But honestly i don't really know what to do right now. Is that correct what I´ve done here? (as you can see on the photo below) 

 

 

try67
Community Expert
Community Expert
November 25, 2020

Yes, that's correct.