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.
Hi,
I have calculated total order 25K and also calcualtated avg shipped day 3.97 by using datediff DAX formula (difference between order date and shipped date). This is a calculated column of avg shipped day.
I want to calculate how many order are above avg shipped day and how many order are below shipped day and want to show in Donut visual. I am attaching a screen shot for the example.
I want to get the result as per this screen shot in my power bi report. Can you please help me how to do?
Below Avg. Time=VAR _avg=[Avg. Shpping Time] RETRUN COUNTROWS(FILTER(ALLSELECTED(Table[OrderID]),[Shipping Time]<_avg))
Above Avg. Time=COUNTROWS(ALLSELECTED(Table[OrderID]))-[Below Avg. Time]