Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi I have this pivot table after final manipulation
i have to achive this
please tell me the exprssion used for
Hi Pramod,
You can achieve this by:
FOC Q= Sum(If(Price=0,Quantity));
Quantity=Sum(If(Price<>0,Quantity));
Price=Sum(Price);
Avg=Sum(Price)/Sum(Quantity)