Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hello Everyone,
Is there any way that we can calculate how many Monday, tuesday remaining in current month?
For example today is 01/24/2023. So, how many Monday is remaining? in my dataset that I am working on I have data upto 01/18/2023 so I need to calculate how many Mondays are remaining in current month.
Please somebody help me with the dax for the same.
Thank you in advance
Solved! Go to Solution.
@Anonymous , You can use measure like(or column)
Monday = Countrows( filter(calendar(Today()+1, eomonth(today(),0)), weekday([Date],2) =1))
Tuesday = Countrows( filter(calendar(Today()+1, eomonth(today(),0)), weekday([Date],2) =2))
Hi, It is working. But can we calculate all Monday to Friday remaining in current month.
Like, Monday - 1, Tuesday 1, Wednesday 1 so on..
@Anonymous , You can use measure like(or column)
Monday = Countrows( filter(calendar(Today()+1, eomonth(today(),0)), weekday([Date],2) =1))
Tuesday = Countrows( filter(calendar(Today()+1, eomonth(today(),0)), weekday([Date],2) =2))
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
76 | |
76 | |
55 | |
37 | |
34 |
User | Count |
---|---|
99 | |
56 | |
53 | |
44 | |
40 |