I've got a problem with my form (an invoice, you can see pdf file at http://www.fornoantico.it/fatture/fattura-definitiva-togli-zeri.pdf), in particular on a calculated field... I want to hide it if value = 0, but it doesn't disappear
I've tried to use Action Builder, but "ok" button is disabled, and shows this alert "actions may not work with forms targeting html or guide"
I've tried to use some formulas like
if (IMPORTO[0] == 0) then
IMPORTO_SCONTATO[0].presence="invisible"
else
IMPORTO_SCONTATO[0].presence="visible"
endif
(I've got a IMPORTO field that contains Quantity * Price, then a SCONTO flied that contains only the discount value calculated as IMPORTO * SCONTO / 100, and an IMPORTO_SCONTATO field that contains that contains the price inclouding discount, calculated as IMPORTO - SCONTO)
But it doesn't work, this IMPORTO_SCONTATO field is always present showing 0 value, and this is a problem because in this invoice if we have a few rows then we have zeros in other ones (see image)
Can you please help me solving this issue? I'm going nuts, I'm working on it since last week.
Thanks a lot