Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi all,
I need help to count how many documents have more that one ID as per the below screenshot where the resutl show that only 2 documents have more than one ID.
Thank you
Solved! Go to Solution.
@simlee , Try like
countx(filter(Summarize(table,table[document],table[IDs],"_1", count(Table[document])),[_1] >=2),[document])
What happens if you try something like putting the document field into the rows of a matrix, then use a measure doing something like:
measure = if(countrows(IDs)=distinctcount(IDs),0,1)
hi @simlee ,
You just have to use Group By and count, like this:
One
Two
Three
Proud to be a Datanaut!
Private message me for consulting or training needs.