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
5 years agoSuper User
Anonymous ,
So just switch total off from table property.
Anonymous
5 years agoNot applicable
can you please explain why you did minus 2 in the second measure