Hello,
I trie to display data who have same IdRetour but different reference , the reference Guaranty is false or true, i want to the same IdGroup if one of the reference of the IdRetour then all become False.
expected :
IdRetour | Reference | PriseEnGarantie |
107 | 8716774182 | False |
107 | 87167728690 | False |
107 | 8716774182 | False |
I'am in Direct Query , someone can show me the path to the solution please ?
Thank you
@ItSupportElm , Create a new measure and try
PriseEnGarantie measure =
var _cnt = countx(filter(allselcted(table), Table[IdRetour] = max(Table[IdRetour]) && [PriseEnGarantie] = false()),[IdRetour])
return
if(not(isblank(_cnt)), false(), max( table[[PriseEnGarantie] ))
User | Count |
---|---|
127 | |
52 | |
33 | |
31 | |
28 |
User | Count |
---|---|
151 | |
54 | |
37 | |
32 | |
25 |