Forum Discussion
Crazydog
3 years agoFrequent Visitor
Slicer & value pick
So I have say 3 columns, (num)Col A (num)Col B (num)Col C (Calculated = Col A * Col B) 0.5 2 0.5 * 2 7 5 ...
- 3 years ago
Hi, Crazydog ;
May be you need add a new table from column2,
Table 2 = VALUES('Table'[Column2])Then you could create a measure,
column3 = SUM('Table'[Column1])*MAX('Table 2'[Column2])The final show:
Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-yalanwu-msft
Community Support
3 years agoHi, Crazydog ;
May be you need add a new table from column2,
Table 2 = VALUES('Table'[Column2])
Then you could create a measure,
column3 = SUM('Table'[Column1])*MAX('Table 2'[Column2])
The final show:
Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.