Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance 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 |
---|---|
73 | |
72 | |
39 | |
25 | |
23 |
User | Count |
---|---|
96 | |
93 | |
51 | |
43 | |
42 |