hi,
I have products that have price per box and per unit,
for example box price is $64 in the box has 9 units so the price per unit is $7.11.
the problem is the in the report i have it times it by box price but some products are deliver per unit so the price should be calculated by unitprice not price box in the report.
my question is:
how can i do a iif condition formula to to check if is price box or unit price?
I have this but it's not working:
thank you
I have products that have price per box and per unit,
for example box price is $64 in the box has 9 units so the price per unit is $7.11.
the problem is the in the report i have it times it by box price but some products are deliver per unit so the price should be calculated by unitprice not price box in the report.
my question is:
how can i do a iif condition formula to to check if is price box or unit price?
I have this but it's not working:
Code:
=IIf([UNIT]="EACH",Sum([UnitCost]*[Quantity]),Sum([UnitPrice]*[Quantity]))