Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Anonymous
Not applicable

Days Elapsed in Current Month

Hello Power BI Enthusiast, 
I want to get how many days elapsed in the current month. 
For example: Today is 8th November
So, Output should be 7.

Kindly help.

 

Regards,
AJP

3 ACCEPTED SOLUTIONS
Tahreem24
Super User
Super User

@Anonymous , Try this DAX

Solution 1 = DATEDIFF(DATE(2022,11,1),TODAY(),DAY)
OR
Solution 2 = 
DATEDIFF(Table[DateColumn],TODAY(),DAY)
 
Don't forget to give thumbs up and accept this as a solution if it helped you!!!

Please take a quick glance at newly created dashboards : Restaurant Management Dashboard , HR Analytics Report , Hotel Management Report, Sales Analysis Report , Fortune 500 Companies Analysis , Revenue Tracking Dashboard

View solution in original post

PaulDBrown
Community Champion
Community Champion

Try:

Days elapsed current month =
DATEDIFF(EOMONTH(TODAY(), -1) +1, TODAY(), DAY)

elapsed.jpg





Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






View solution in original post

Tahreem24
Super User
Super User

@Anonymous Try this also,

DateDiff = DATEDIFF(STARTOFMONTH('Table'[Date]),TODAY(),DAY)
 
Don't forget to give thumbs up and accept this as a solution if it helped you!!!

Please take a quick glance at newly created dashboards : Restaurant Management Dashboard , HR Analytics Report , Hotel Management Report, Sales Analysis Report , Fortune 500 Companies Analysis , Revenue Tracking Dashboard

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

@Tahreem24 @PaulDBrown 
Thanks a lot for the solution.

Tahreem24
Super User
Super User

@Anonymous Try this also,

DateDiff = DATEDIFF(STARTOFMONTH('Table'[Date]),TODAY(),DAY)
 
Don't forget to give thumbs up and accept this as a solution if it helped you!!!

Please take a quick glance at newly created dashboards : Restaurant Management Dashboard , HR Analytics Report , Hotel Management Report, Sales Analysis Report , Fortune 500 Companies Analysis , Revenue Tracking Dashboard
PaulDBrown
Community Champion
Community Champion

Try:

Days elapsed current month =
DATEDIFF(EOMONTH(TODAY(), -1) +1, TODAY(), DAY)

elapsed.jpg





Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






Tahreem24
Super User
Super User

@Anonymous , Try this DAX

Solution 1 = DATEDIFF(DATE(2022,11,1),TODAY(),DAY)
OR
Solution 2 = 
DATEDIFF(Table[DateColumn],TODAY(),DAY)
 
Don't forget to give thumbs up and accept this as a solution if it helped you!!!

Please take a quick glance at newly created dashboards : Restaurant Management Dashboard , HR Analytics Report , Hotel Management Report, Sales Analysis Report , Fortune 500 Companies Analysis , Revenue Tracking Dashboard

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.