Forum Discussion
jananagarajan
3 years agoRegular Visitor
DAX Calculation Power BI
How to get the Value based on Max(Temp) in the column . Sample data is attached Customer ID Temp Value T01 39.7 55 T01 38 58 T01 37.8 58 ...
- 3 years agojananagarajan , you can try,
create calculate column or measure,
output= CALCULATE(VALUES('Table'[value]),'Table'[Temp]=max('Table'[Temp]))
let me know is this work for u or not.Thanks
komald
3 years agoHelper I
jananagarajan , you can try,
create calculate column or measure,
output= CALCULATE(VALUES('Table'[value]),'Table'[Temp]=max('Table'[Temp]))
let me know is this work for u or not.Thanks
create calculate column or measure,
output= CALCULATE(VALUES('Table'[value]),'Table'[Temp]=max('Table'[Temp]))
let me know is this work for u or not.Thanks
jananagarajan
3 years agoRegular Visitor
Thank you Komald.