If trying to find the correct IF syntax to only sh...
# advancedpdf
p
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
try #if record.tax2total?has_content && record.tax2total gt 0 Or #if record.tax2total?has_content && record.tax2total?number gt 0
p
@creece thank you , that worked!