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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I need to create a report showing the ID and detail, also need to show how many details for this ID .
when I show a report without detailed information, it will show the right count.
when I show detailed information, the count will show 1,
I need to create a measure to let this count always show the total without a detail filter,
Do you have any idea? Thank you ,
like under the screenshot example, I need count by ID column for 111 always show 2, count for 114 always show 3.
count by ID number should match with right table example.
Hi,
Drag this measure
Measure = calculate(countrows(Data),all(Data[Detail]))
Hope this helps.