Forum Discussion
rakeshsaini
9 years agoHelper II
Get the Multipication of two Column
Hi Team , I have a TABLE1 , TABLE1 have COLUMN A , COLUMN B . And I also have Another Table TABLE2 , it have COLUMN C , COLUMN D. Column A have Realtionship with Column B (Many to one) . I Wan...
- 9 years ago
How about this
New Column = Table1[Total Potential Coils Involved] * RELATED('Table2'[PoundsPerCoil])And if you want to sum up that column create a measure over it
- 9 years ago
Hi rakeshsaini,
The syntax of your formula: result=SUMX(TABLE1,Related(TABLE2[PoundsPerCoil]) * TABLE1[Total Potential Coils Involved]) is right. While you should create a calculated column in Table1 based on my understanding.You can create a calculated column in Table1 using the formula.
Related(TABLE2[PoundsPerCoil]) * TABLE1[Total Potential Coils Involved]
What's your opinion?
Best Regards,
Aneglia
Phil_Seamark
9 years agoMicrosoft Employee
How about this
New Column = Table1[Total Potential Coils Involved] * RELATED('Table2'[PoundsPerCoil])And if you want to sum up that column create a measure over it
rakeshsaini
9 years agoHelper II
Thanks Phil_Seamark , Yes Now its giving right Calculations.