Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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])