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 everyone,
I'm struggling with a formula to create the average quantity produced in a production line. I started with this formula to count the days the we actually worked:
countrows(calculatetable(dDate,filter(dDate,dDate[Day Of Week]<>"domingo"&&dDate[Date]<=lastdate(all(fProduction[Producción])))))
The formula works fine; it basically takes away Sundays. Here's the problem. I just got a new table with dates that should be taken away from the average (the dates are different depending on the production line).
I have no idea how to do this. Any suggestions?
(Hope I was able to explain my issue clearly)
@EdwardChurches , Assume Your measure name is M1, which you created above you can try
AverageX(Values(Table[ production line]) , [M1])