Join Slack
Powered by
If trying to find the correct IF syntax to only sh...
# advancedpdf
p
PlanetJupiter
02/12/2024, 11:25 AM
If trying to find the correct IF syntax to only show the <TR> when the TaxAmt has a value and is greater than 0.00 This doesn't seem to work: <#if record.tax2total?has_content && != '0.00'>
c
creece
02/12/2024, 4:40 PM
try
#if record.tax2total?has_content && record.tax2total gt 0
Or
#if record.tax2total?has_content && record.tax2total?number gt 0
p
PlanetJupiter
02/13/2024, 10:36 AM
@creece
thank you , that worked!
4
Views
Open in Slack
Previous
Next