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 ,
I am trying to get the min value of one dimension based on selecting another value of that dimension through a common dimension.
e.g. I have simple table with date, car, colour and amount. The car can have multiple colours. Green is the cheapest. I select red in a filter so I can display the cost of red in one visual, but I also want to see the cheapest for comparision.
My approach is get the car first of the selected colour, then get the list of all colours associated with that car, then get try to get the value of those colours however but this is just returning min value of the selected colour.
Solved! Go to Solution.
You can create a measure like
Cheapest colour =
var summaryTable = CALCULATETABLE( SUMMARIZE('Table', 'Table'[Car], 'Table'[Colour], 'Table'[Amount]), REMOVEFILTERS('Table'[Colour]))
var cheapestColours = TOPN(1, summaryTable, [Amount], ASC)
return CONCATENATEX( cheapestColours, [Colour], ", ")
The CONCATENATEX is in case there are multiple colours at the same price
You can create a measure like
Cheapest colour =
var summaryTable = CALCULATETABLE( SUMMARIZE('Table', 'Table'[Car], 'Table'[Colour], 'Table'[Amount]), REMOVEFILTERS('Table'[Colour]))
var cheapestColours = TOPN(1, summaryTable, [Amount], ASC)
return CONCATENATEX( cheapestColours, [Colour], ", ")
The CONCATENATEX is in case there are multiple colours at the same price
thanks @johnt75 that looks like its working as expected...now to apply to my actual complicated dataset!
User | Count |
---|---|
66 | |
60 | |
47 | |
33 | |
32 |
User | Count |
---|---|
86 | |
75 | |
56 | |
50 | |
45 |