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
Anonymous
Not applicable

Data comparison on two tables in direct query

Hi Gurus,

 

     I have  "created_date" in table A , "updated_date" in table B , data has been pulled through Direct query. Now i need to compare both the date fields from different tables as mentioned below.

 

  if( created_date > updated_date)

 then (created_date ) 

 else (updated_date).

 

1) Is it possible to achieve this scenario with direct queries

2) Basically am trying to find the maximum date by comparing these two dates. Any suggestion

 

Thanks,

Shamar

1 ACCEPTED SOLUTION

Hi @Anonymous,

 

Try this measure.

 

Measure =
IF (
    MAX ( 'Table_3'[create date] ) > MAX ( 'Table_4'[update date] ),
    MAX ( 'Table_3'[create date] ),
    MAX ( 'Table_4'[update date] )
)

 

Best  Regards,

Cherry

Community Support Team _ Cherry Gao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

4 REPLIES 4
v-piga-msft
Resident Rockstar
Resident Rockstar

Hi @Anonymous,

 

By my tests, you could create the measure to compare the two date from different tables in Direct Query.

 

Capture.PNG

 

Best Regards,

Cherry

Community Support Team _ Cherry Gao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

@v-piga-msft : Can you please explain a bit more to get clarity or can u pls share the code

Hi @Anonymous ,

 

Have you solved your problem?

 

If you have solved, please accept the replies making sense as solution to your question so that people who may have the same question can get the solution directly.

 

If you still need help, please feel free to ask.

 

Best Regards,

Cherry

Community Support Team _ Cherry Gao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hi @Anonymous,

 

Try this measure.

 

Measure =
IF (
    MAX ( 'Table_3'[create date] ) > MAX ( 'Table_4'[update date] ),
    MAX ( 'Table_3'[create date] ),
    MAX ( 'Table_4'[update date] )
)

 

Best  Regards,

Cherry

Community Support Team _ Cherry Gao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

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.