How can I get rid of this #MultiValue error? This is what my data looks like
Order Item CostCategory UnitPrice
20305060 24385 Labor 1.00
0305060 24385 Other 3.00
I need my report output to be like this.
Order Item LaborCost OtherCost
20305060 24385 1.00 3.00
I am using these two formulas
if (CostCategory=“Labor”) sum(UniPrice) else 0
if (CostCategory=“Other”) sum(UniPrice) else 0