Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

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...
  • amitchandak's avatar
    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])