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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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