Forum Discussion
Finding Delta
- Anonymous7 years agoMeasure =VAR __ids = SELECTCOLUMNS('Table19',"__id",[ID])VAR __allIds = ALL('Table18'[ID])VAR __otherIds = EXCEPT(__allIds,__ids)RETURN IF(SELECTEDVALUE(Table18[ID], 0) IN (__otherIds), 1, 0)The above measure is working as I wanted it to. by setting a visual filter for a table visual. where Measure IS 1Thank you Greg_Deckler and Anonymous for your time.
If I understand this correctly, I think you want my Inverse Aggregator Quick Measure:
https://community.powerbi.com/t5/Quick-Measures-Gallery/Inverse-Aggregator/m-p/342266
- Anonymous7 years agoNot applicable
Here I am trying to display all the IDs that are not present instead of sum!
so ouput we be something like
ID 4 5 7 8 9 - Greg_Deckler7 years ago
Community Champion
It's really pretty much the same thing:
Measure 14 = VAR __ids = SELECTCOLUMNS('Table19',"__id",[ID]) VAR __allIds = ALL('Table18'[ID]) VAR __otherIds = EXCEPT(__allIds,__ids) RETURN CONCATENATEX(__otherIds,[ID],", ")See Page 6, Tables 18 and 19.
- Anonymous7 years agoNot applicable
Greg_Deckler Thanks a lot for this,
But What I really want is output as table, As I would Have 1000's of Id and I would like to link those ID's to other table and extract some other information.
I tried Figuring it out! But Can't get it to work.
- Anonymous7 years agoNot applicable
I have created a measure that is giving me the count
CALCULATE(COUNT(TABLE1[ID]), TABLE1[Status] = 'Active') - DISTINCTCOUNT(TABLE2[ID])
BUT Instead of Numbers I want to display the actual ID Greg_Deckler