How can I make this IF/THEN calculation work in a lookup table?
=IF(INDEX(Order.CostShare,ROW())="50%"(DIV(INDEX(Order.Cost,ROW()),50)
This is what I want to do:
- NOTE: CostShare is a drop-down pick list of either 50% or 0% (on each row of the table)
- The plan is to calculate:
- If CostShare is 50%, then divide "Cost" by 50
- But if CostShare is 0%, then divide "Cost" by 0