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!View all the Fabric Data Days sessions on demand. View schedule
Hi !
I have a new problem, my boss wants me to count the number of monday/... during the last 30days... I've try a lot of things but I'm still in trouble with that because I've find solutions with a DateTable and I can't use that...
Is there anyone with an idea?
Thx 🙂
Sq'
Solved! Go to Solution.
@Squalleh why can't you use a date table? that would be the easier to to do
it would be a simple measure
https://www.mattmasson.com/2014/02/creating-a-date-dimension-with-a-power-query-script/
no of mondays in last 30 days =
CALCULATE (
COUNTROWS ( date ),
FILTER (
date,
DATESBETWEEN ( date[date], DATEADD ( date[date], -30, DAY ), date[date] )
&& dayofweek = "monday"
)
)
Proud to be a Super User!
@Squalleh why can't you use a date table? that would be the easier to to do
it would be a simple measure
https://www.mattmasson.com/2014/02/creating-a-date-dimension-with-a-power-query-script/
no of mondays in last 30 days =
CALCULATE (
COUNTROWS ( date ),
FILTER (
date,
DATESBETWEEN ( date[date], DATEADD ( date[date], -30, DAY ), date[date] )
&& dayofweek = "monday"
)
)
Proud to be a Super User!
@vanessafvgthank you for your answer!
Finaly my boss accept to let me add a date table... so.... Problem solved!
Have a nice day!
Sq'
Hi,
Could you share how did you solved?
Thanks.
Mauricio
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!