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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hello,
I am new to PowerBI and I am trying to create two measures, one for weekly active users, and one for monthly active users.
I want the two measures to be calculated on a daily basis, so I can see them on a line chart as well.
I managed to do it partially with the following measure:
wau =
var CurrentDate= SELECTEDVALUE('growth_sum'[Date])
return
COUNTROWS(CALCULATETABLE(growth, filter(growth, DATESINPERIOD(growth[event date], CurrentDate, -7, DAY))))
Hi @tally ,
Please try the measure.
wau =
CALCULATE( COUNTROWS(growth),DATESINPERIOD(growth_sum[Date], MAX(growth[event date]), -7, DAY))
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hey,
Thank you so much for your time but it still not work.
The problem is that it still gives me all the dated and not the dates in this period.
Basically, I want a rolling WAU, so every day I will know the updated WAU for the last week..
@tally as a best practice when you are working with time intelligence you should always add a calendar dimension in your model and then use that for all time intelligence DAX function. You can check my youtube playlist on time intelligence and also how to add a calendar table, and then recreate your measures using date from the calendar table and see if that fixes the issue. https://youtube.com/playlist?list=PLiYSIjh4cEx2FkuGkngYruS0wm8MYFsoi
I would ❤ Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
Thank you so much for replying!
I already created this table and I tried doing the same measure with it but the result is the same...
Do you have any other ideas why it won't work? or any other solutions for this measure?
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.