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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
Asma
Frequent Visitor

Relative Day DAX

Hello everyone, I need to create a column in a date table that show the relative day Number 

for exemple if the date of Today is 09/03/2017

If the day chosen is 09/03/2017 than Relative day Number = 0 

if the day chosen is 10/03/2017 than Relative day Number = 1

if the day chosen is 08/10/2017 than Relative day Number = -1

 

I already calculate the Relative Year Number = 'Dates'[Year]-YEAR(Now())

the Relative Month Number = 'Dates'[Month]-MONTH(Now()) + 12* 'Dates'[Relative Year Number]

and the Relative Quarter Number = 'Dates'[QuarterofYear]-MONTH(NOW()+2/3)+ 4* 'Dates'[Relative Year Number] and it's working.

Now I am trying to Calculate the Relative Day Number using the same methode  however - I can't figure out a way to count the number of days for each year and can't found a function that returns the number of Today of year ( a number from 1 to Number of days in the year)

 

Is there a way to create this in Power BI - using DAX (which I'm not familar with at all)

 

 

Any ideas, suggestions or points in the right direction - would be greatly appreciated! Smiley Happy 

 

Thanks!

1 ACCEPTED SOLUTION
Asma
Frequent Visitor

@v-huizhn-msft Well I found the solution, here it is 🙂 

 

Relative Day Number = IF('Dates'[Date]> TODAY();(DATEDIFF(TODAY();'Dates'[Date]; DAY ));-1 *(DATEDIFF('Dates'[Date];TODAY(); DAY )))

Thank you for your help

View solution in original post

3 REPLIES 3
v-huizhn-msft
Microsoft Employee
Microsoft Employee

Hi @Asma,

Please try create a calculated column using the formula.

Relative day Number=IF(Dates[Date]=NOW(),0,IF(Dates[Date]>NOW(),1,-1))


If this doesn't resolve your issue, please share your sample data for further analysis.

Best Regards,
Angelia

@v-huizhn-msft Hi Angelia, thank you for your help but unfortunately your solution didn't work for me for the sample reason that my data has many years, and I want the relative Day number to be counted for any day of any year... Not only for the previous and the next days.

for exemple if the date of Today is 09/03/2017 and the day chosen is 09/03/2016 than Relative day Number = -365 .... and so on....

here a part of my database DAY.PNG

 

 

 

Best Regards,

Asma

Asma
Frequent Visitor

@v-huizhn-msft Well I found the solution, here it is 🙂 

 

Relative Day Number = IF('Dates'[Date]> TODAY();(DATEDIFF(TODAY();'Dates'[Date]; DAY ));-1 *(DATEDIFF('Dates'[Date];TODAY(); DAY )))

Thank you for your help

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

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

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.