Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Dear all,
I have a pivot with the sum of salesfee(=sum(SalesFee) per EmployerName and Year.
I would like to show only the records for each EmployerName that have data of previous year but not the current year.
Could anyone help me with this one?
Thanks in advance.
Stijn
@je48746stijn try below expression
=sum({<EmployerName={"=sum({<Year ={'$(=max(Year))'}>}SalesFee)=0 and sum({<Year ={'$(=max(Year)-1)'}>}SalesFee)>0"}>}SalesFee)
@je48746stijn try below expression
=sum({<EmployerName={"=sum({<Year ={'$(=max(Year))'}>}SalesFee)=0 and sum({<Year ={'$(=max(Year)-1)'}>}SalesFee)>0"}>}SalesFee)
Hi, thanks. This is what I wanted. Thanks a lot !