Forum Discussion
hanami001
8 years agoFrequent Visitor
Multiply Calculation in Subtotal
Hi Everyone, I am using multiple formulas to calculate filed but I found in a Subtotal column is incorrect. On column: Deduct Rate, I use formula = Amount_THB * Number of CPN. The va...
- 8 years ago
Hi Ross73312,
This problem is solved.
I have used another way, an insert a new column and use the formula to get data, an example is below.
Deduct Rates = LOOKUPVALUE('Interline Rate'[Amount_THB], 'Interline Rate'[Carrier],vw_nw_sale_info_01[Carrier Uplifted], 'Interline Rate'[Routing_Bi],RELATED('Routing Bi'[Route_Bi]), 'Interline Rate'[RBD],vw_nw_sale_info_01[CLASS] )% Change Deduct = [Revenue] - [Deduct Rates]
Anonymous
8 years agoNot applicable
That might be the killer part to your problem. You will need to figure out a way to relate the data if you wish to do this. Conceptually, is there anything that relates the two tables?
hanami001
8 years agoFrequent Visitor
Hi Ross73312,
This problem is solved.
I have used another way, an insert a new column and use the formula to get data, an example is below.
Deduct Rates = LOOKUPVALUE('Interline Rate'[Amount_THB],
'Interline Rate'[Carrier],vw_nw_sale_info_01[Carrier Uplifted],
'Interline Rate'[Routing_Bi],RELATED('Routing Bi'[Route_Bi]),
'Interline Rate'[RBD],vw_nw_sale_info_01[CLASS]
)% Change Deduct = [Revenue] - [Deduct Rates]
- Anonymous8 years agoNot applicable
Glad you figured out a path to a solution :)