For TaxCd, I’m using:
if(@.TaxCode = "TVA19-TPE", "TVA19",
if(@.TaxCode = "ECOFILTER", "ECOFILTER",
if(@.TaxCode = "TPE", "TPE", ""))))
And for TaxV:
IF(@.TaxCode = "TPE", @.'showTaxValue()',
IF(@.TaxCode = "ECOFILTRE", @.'showTaxValue()',
IF(@.TaxCode = "TVA19-TPE", 19.0, 0.0))))
The issue is that when I try to filter specific taxes, the other taxes remain in the list, but their TaxCd is empty and TaxV is 0. I want these other taxes to not exist at all in the filtered list instead of showing empty or 0 values.


Report
All responses (
Answers (