Forum Discussion
Anonymous
5 years agoNot applicable
Easy Dax solution required
I have a table like this below and I would Like to get only those Ids which has both the version present in Version column. So in below table I would like to get list of IDs or count of Ids which has...
- 5 years ago
@PoweeeBII, create a measure like the following and use with id in visual
medida :
var _max 2
devolución
countx(filter(summarize(Table, Table[Id], "_1",distinctcount(table[Version])),[_1] ?_max),[Id])
Tahreem24
Super User
5 years agoAnonymous ,
You can make it happen by creating 2 measures:
Measure 1 = CALCULATE(COUNT('Table'[Version]),ALLEXCEPT('Table','Table'[Id]))
Measure2 = CALCULATE(SUM('Table'[Id]),FILTER('Table',[Measure 1]=2))