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
Uka
Frequent Visitor

Calculate the difference in values between previous dates

Hello,

 

Please can you help me to return the difference between two values within some given dates as below;

Uka_0-1697732851986.png

So, I would like to substract the previous date value from the current one ie ((Eng FullTime) on the 13/10/2023) - ((Eng FullTime) on the 06/10/2023)

 

The (Eng Fulltime) is a measure that was calclulated as below; 

Eng FullTime = CALCULATE(DISTINCTCOUNT('ENG SOB'[Employee]), FILTER('ENG SOB', 'ENG SOB'[Groups] = "Engineer"))

Many thanks in advance!
1 ACCEPTED SOLUTION

Hi @Greg_Deckler ,

 

Many thanks for your assistance!

 

I have now figured it out using the following;

Weekly Difference =
Var _selecteddate = VALUES('Date Friday Only'[Date])
var _maxdate = MAXX(_selecteddate, 'Date Friday Only'[Date])
var _value2 = CALCULATE([Eng FullTime], 'Date Friday Only'[Date] = _maxdate)
var _value3 = CALCULATE([Eng FullTime], 'Date Friday Only'[Date] = _maxdate -7)

Return
_value2 - _value3

_value3 has -7 because the dates occur every 7 days, thus returns the date for the previous week
 
Thanks

View solution in original post

5 REPLIES 5
Greg_Deckler
Super User
Super User

@Uka See my article on Mean Time Between Failure (MTBF) which uses EARLIER: http://community.powerbi.com/t5/Community-Blog/Mean-Time-Between-Failure-MTBF-and-Power-BI/ba-p/3395....
The basic pattern is:
Column = 
  VAR __Current = [Value]
  VAR __PreviousDate = MAXX(FILTER('Table','Table'[Date] < EARLIER('Table'[Date])),[Date])

  VAR __Previous = MAXX(FILTER('Table',[Date]=__PreviousDate),[Value])
RETURN
  __Current - __Previous


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Hello @Greg_Deckler ,

 

The solution did not work for me as I got a wired result as below;

Uka_0-1697739166328.png

Below is the code that I used;

#Result =
  VAR __Current = CALCULATE(DISTINCTCOUNT('ENG SOB'[Employee]), FILTER('ENG SOB', 'ENG SOB'[Groups] = "Engineer"))
  VAR __PreviousDate = MAXX(FILTER('ENG SOB','ENG SOB'[Operational Date] < EARLIER('ENG SOB'[Operational Date])),[Operational Date])
  VAR __Previous = MAXX(FILTER('ENG SOB',[Operational Date]=__PreviousDate),[Eng FullTime])
RETURN
  __Current - __PreviousDate

@Greg_Deckler Please can you offer another method?


@Uka Post your sample data as text/table and I'll take a look.


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Hi @Greg_Deckler ,

 

Many thanks for your assistance!

 

I have now figured it out using the following;

Weekly Difference =
Var _selecteddate = VALUES('Date Friday Only'[Date])
var _maxdate = MAXX(_selecteddate, 'Date Friday Only'[Date])
var _value2 = CALCULATE([Eng FullTime], 'Date Friday Only'[Date] = _maxdate)
var _value3 = CALCULATE([Eng FullTime], 'Date Friday Only'[Date] = _maxdate -7)

Return
_value2 - _value3

_value3 has -7 because the dates occur every 7 days, thus returns the date for the previous week
 
Thanks

@Uka That works!


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Fabric Monthly Update - May 2024

Check out the May 2024 Fabric update to learn about new features.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.