Forum Discussion
Get the Multipication of two Column
- 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
I used this Formula for Now !!!
Measure--
result=SUMX(TABLE1,Related(TABLE2[PoundsPerCoil]) * TABLE1[Total Potential Coils Involved])
is it correct?
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
- rakeshsaini9 years ago
Helper II
Thanks Phil_Seamark ,
Actually I am also Confused that it will work or not ? i mean it will give right Answer or not?
- Phil_Seamark9 years ago
Microsoft Employee
It should work and should be easy enough to test on some cut down tables.
- rakeshsaini9 years ago
Helper II
Thanks Phil_Seamark , Yes Now its giving right Calculations.