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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi all
Looking for a dax to caculate total days for the month of selected date. Here attaching Screenshot for your reference. selected date is '09 june 2021' and i want total number of dates for the month "june".
Solved! Go to Solution.
total daty = day(eomonth(selectedvalue(Date[Date]),0))
Work Day =
COUNTROWS(FILTER(ADDCOLUMNS(calendar(eomonth(selectedvalue(Date[Date]),-1) +1, eomonth(selectedvalue(Date[Date]),0)),"WorkDay", if(WEEKDAY([Date],2) <6,1,0)),[WorkDay] =1))
total daty = day(eomonth(selectedvalue(Date[Date]),0))
Work Day =
COUNTROWS(FILTER(ADDCOLUMNS(calendar(eomonth(selectedvalue(Date[Date]),-1) +1, eomonth(selectedvalue(Date[Date]),0)),"WorkDay", if(WEEKDAY([Date],2) <6,1,0)),[WorkDay] =1))
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!