The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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
User | Count |
---|---|
77 | |
76 | |
36 | |
31 | |
29 |
User | Count |
---|---|
93 | |
79 | |
57 | |
48 | |
48 |