The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
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.