The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi All,
I have a table as following:
Col 1 | Col 2 | Col 3 |
10 | 1 | 30 |
40 | 20 | 80 |
I need to create two calculated columns. First one to calculate Median and second to calculate MAX. Please note that I do not want to create in a measure. Please find expected result as below:
Col 1 | Col 2 | Col 3 | Median | Max |
10 | 1 | 30 | 10 | 30 |
40 | 20 | 80 | 40 | 80 |
Solved! Go to Solution.
@Krishnan_47 , Try new columns like
MedianX({[Col1], [Col2], [Col3]},[value])
Maxx({[Col1], [Col2], [Col3]},[value])
@Krishnan_47 , Try new columns like
MedianX({[Col1], [Col2], [Col3]},[value])
Maxx({[Col1], [Col2], [Col3]},[value])