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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
zawlh
Helper I
Helper I

Growth Rate and Number between two dates

Hello.

I have a data for everyday record through a year, [Total Members] column is a running total column.

 

What I want to know is that is there any DAX formula to calculate the value difference between two specific date.

 

Let's say June 30 is the MAX[date].

So, growth rate in 10 days = compare [Total Member]_of_Max[date] & [Total Members]_of_June_20

zawlh_0-1643185092033.png

I am trying to get a DAX formula that is related to calculate growth rate or growth numbers between two specific date.
Thank you for your help.

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@zawlh , assume you are selecting a date range, You can try measure like

 

Measure =
Var _max = maxx(allselected(Date),Date[date])// Or take today
Var _min = minx(allselected(Date),Date[date])
return
calculate([Value Measure], filter(all(Date),Date[Date] =_max)) - calculate([Value Measure], filter(all(Date),Date[Date] =_min))

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@zawlh , assume you are selecting a date range, You can try measure like

 

Measure =
Var _max = maxx(allselected(Date),Date[date])// Or take today
Var _min = minx(allselected(Date),Date[date])
return
calculate([Value Measure], filter(all(Date),Date[Date] =_max)) - calculate([Value Measure], filter(all(Date),Date[Date] =_min))

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here

I tried your solution and it works. Then, I try a little bit change and I finalized with this DAX.

 
calculate(SUM(Table[Columne_Name]),
   filter(all(Table[Date]),
   Table[Date] = DATE(2021,06,30)
  )
) -
calculate(SUM(Table[Columne_Name]),
   filter(all(Table[Date]),
   Table[Date] = DATE(2021,06,20)
  )
)
 
Thank you for your help.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

November Carousel

Fabric Community Update - November 2024

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

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.