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
what i want to do is create a mesure for the "countDisRoles" for "Min Date slicer" measure and another measure for the "Max Date slicer"
and them be able to use these two new measures in future calcualtions i.e. the difference in count from Min to Max.
thanks in advance
Solved! Go to Solution.
@rafterse , Try measures like
new measure =
var _max = maxx(allselected(Date),Date[Rank])
return
calculate( DISTINCTCOUNT(Table[Column]), filter('Date', 'Date'[Date] =_max))
new measure 1=
var _min = Minx(allselected(Date),Date[Rank])
return
calculate( DISTINCTCOUNT(Table[Column]), filter('Date', 'Date'[Date] =_min))
@rafterse , Try measures like
new measure =
var _max = maxx(allselected(Date),Date[Rank])
return
calculate( DISTINCTCOUNT(Table[Column]), filter('Date', 'Date'[Date] =_max))
new measure 1=
var _min = Minx(allselected(Date),Date[Rank])
return
calculate( DISTINCTCOUNT(Table[Column]), filter('Date', 'Date'[Date] =_min))