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

Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.

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
PBIApril_Carousel

Power BI Monthly Update - April 2025

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

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

April2025 Carousel

Fabric Community Update - April 2025

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

Top Solution Authors