cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Preeti_Yadav
Resolver I
Resolver I

Calculate No. of days

Hi,

 

I need to calculate the No.of days from start of the year till the selected date in the slicer.
Please help in a dax .

Thanks in advance!!
Preeti Yadav

1 ACCEPTED SOLUTION
Fowmy
Super User
Super User

@Preeti_Yadav 

You the following measure:

Days YTD = 
var __dateselected = MAX(Dates[Date]) return
DATEDIFF( 
    DATE( YEAR(__dateselected), 1 , 1 ),
    __dateselected,
    DAY
)+1
Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

View solution in original post

1 REPLY 1
Fowmy
Super User
Super User

@Preeti_Yadav 

You the following measure:

Days YTD = 
var __dateselected = MAX(Dates[Date]) return
DATEDIFF( 
    DATE( YEAR(__dateselected), 1 , 1 ),
    __dateselected,
    DAY
)+1
Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

Helpful resources

Announcements
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Top Solution Authors
Top Kudoed Authors