Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello everyone, I would need to filter a pivot table based on the calculated% result in the table. The result I would like to obtain is to display only the records for which the calculated field of the discount percentage is greater than 60%. Thanks in advance to those who can help me. Antonio
Hi,
you need aggr with something like that :
if(aggr( your calcul of discount percentage,Item) > 60,Item)
with not display null values
regards
Hi,
you need aggr with something like that :
if(aggr( your calcul of discount percentage,Item) > 60,Item)
with not display null values
regards
thanks
best regards