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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Hi, I have a report like below:
The data is like below:
As you cans see, my current slicer is for Zone ID = 7 and date from 15th June to 17th June.
Total Orders = 9 (in above image there are 9 rows of order_id)
Totac Customers = 6 (in above image, there are 6 unique values of Customer ID)
In my report, I need to add another measure for Total Customers who make more than 1 order. In this example the result should be 3. So report should look like this:
Really appreciate it if someone can help me.
Regards,
Ary
Solved! Go to Solution.
@Anonymous , Not sure about order id column and its aggregation,
Assumed order id and count for that.
Try like
countX(filter(summarize(Table, Table[customer_id], "_1", count([Order ID])),[_1]>1),[customer_id])
@Anonymous , Not sure about order id column and its aggregation,
Assumed order id and count for that.
Try like
countX(filter(summarize(Table, Table[customer_id], "_1", count([Order ID])),[_1]>1),[customer_id])