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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
knotpc
Advocate I
Advocate I

Using a measure to calculate DAYS between TWO DATES in TWO Tables Direct Query Mode.

Hello, 

 

I am trying to measure OnTimeDelivery using PowerBI in Direct Query Mode connected to Syspro. The date fields are in multiple tables with a One to Many relationships linked to SalesOrder. Below are the basics of the tables fields. 

 

SorMaster[SalesOrder]

SorMaster[OrderDate]

 

ArSalesMove[SalesOrder]

ArSalesMove[ShipDate]

 

The measure code looks like this. 

 

Days-Ship = DATEDIFF(SorMaster[OrderDate],ArSalesMove[TrnDate],DAY) 

 

The error is this. 

Capture.PNG

 

My PowerBi combined table looks like this. 

 

PowerBiTable.PNG

Any ideas on what I am doing wrong? I am new to this. 

 

Clint

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hey @knotpc

 

you need to provide a single value for the OrderDate or else the measure is not going to know which instance of the OrderDate to use. To get a round this, you can specify FIRSTDATE(SorMaster[OrderDate]) or maybe LASTDATE(SorMaster[OrderDate]). This will filter the OrderDate down to a single value that the measure can digest.

 

Hope this helps,

Parker

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hey @knotpc

 

you need to provide a single value for the OrderDate or else the measure is not going to know which instance of the OrderDate to use. To get a round this, you can specify FIRSTDATE(SorMaster[OrderDate]) or maybe LASTDATE(SorMaster[OrderDate]). This will filter the OrderDate down to a single value that the measure can digest.

 

Hope this helps,

Parker

Parker, 

 

It took me a bit of Googling, to figure what you proposed as I am a NOOB. But, it worked once I did the following. 

 

New Measure

 

Days-Ship = DATEDIFF(
FIRSTDATE(SorMaster[OrderDate]),
FIRSTDATE(ArSalesMove[TrnDate]),
DAY)

 

Thanks for your help. 

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors