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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
Anonymous
Not applicable

Replicate DAX formula in Power Query

Hi,

 

I need to replicate this DAX formula in Power Query. I've tried tirelessly but with no success. Appreciate any help.

 

=IFERROR(DATEDIFF('Scan Event Raw Data'[AKM RFID IN ACCEP DATETIME],'Scan Event Raw Data'[AKM MPR SORT DATETIME],HOUR),-99)

 

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

@PaulCooper thank you, it was almost right. After further research, I added a few more steps in to break it down correctly

 

try Number.RoundDown(Duration.Days(Duration.From([AKM RFID IN ACCEP DATETIME]-[ACCEPTANCE DATETIME]))) * 24+ Duration.Hours(Duration.From([AKM RFID IN ACCEP DATETIME]-[ACCEPTANCE DATETIME])) otherwise -99

View solution in original post

2 REPLIES 2
PaulCooper
Frequent Visitor

I suggest (I haven't tried it):

 

let

     hours = try Duration.Hours([AKM MPR SORT DATETIME] - [AKM RFID IN ACCEP DATETIME]) otherwise -99

in

     hours[Value]
Anonymous
Not applicable

@PaulCooper thank you, it was almost right. After further research, I added a few more steps in to break it down correctly

 

try Number.RoundDown(Duration.Days(Duration.From([AKM RFID IN ACCEP DATETIME]-[ACCEPTANCE DATETIME]))) * 24+ Duration.Hours(Duration.From([AKM RFID IN ACCEP DATETIME]-[ACCEPTANCE DATETIME])) otherwise -99

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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

Top Solution Authors
Top Kudoed Authors