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
Kmcdonald
Helper III
Helper III

IF Statement between Two Tables

Hi,

 

I've got two tables, one is my transaction in MYOB and the other freight pick up details.

The problem I've got is that, my freight sometimes has more than on order in the consignment and I need to work out what has left but not been invoiced yet.

 

So what I am trying to do is look up in my MYOB query, if the "SO Number" field from the MYOB query is contained in the "Sender References" field of the freight table, to pull the "Actual Pickup Date" column into my MYOB query as a new column.

 

I have tried contain, search, find, lookupvalue functions and haven't found a solution yet.

 

Can anyone help me find a solution to this one please?

 

MYOB Table (called "MYOB - Open Orders" in my query):

Kmcdonald_2-1644356762020.png

 

 

Freight Table (called "General Freight - Daily Freight" in my query):

 

Kmcdonald_1-1644356743425.png

 

1 ACCEPTED SOLUTION
v-yalanwu-msft
Community Support
Community Support

Hi, @Kmcdonald ;

You could create a column as follows:

Column = 
var _1=[SO Number]
return
MAXX(
CALCULATETABLE(
    VALUES('Freight'[Actual Pickup Date]),
    CONTAINSSTRING('Freight'[Sender References],_1))
,[Actual Pickup Date])

The final output is shown below:

vyalanwumsft_0-1644572563717.png

Or create a measure as follows:

Measure = 
MAXX(
   CALCULATETABLE(
    VALUES('Freight'[Actual Pickup Date]),
     CONTAINSSTRING('Freight'[Sender References],MAX('MYOB'[SO Number]))),[Actual Pickup Date])

The final output is shown below:

vyalanwumsft_1-1644572614136.png

 

vyalanwumsft_2-1644572732583.png

 

Best Regards,
Community Support Team_ Yalan Wu
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

3 REPLIES 3
Kmcdonald
Helper III
Helper III

Thanks guys 🙂

Appreciate your help and got the result I needed off your suggestions.

v-yalanwu-msft
Community Support
Community Support

Hi, @Kmcdonald ;

You could create a column as follows:

Column = 
var _1=[SO Number]
return
MAXX(
CALCULATETABLE(
    VALUES('Freight'[Actual Pickup Date]),
    CONTAINSSTRING('Freight'[Sender References],_1))
,[Actual Pickup Date])

The final output is shown below:

vyalanwumsft_0-1644572563717.png

Or create a measure as follows:

Measure = 
MAXX(
   CALCULATETABLE(
    VALUES('Freight'[Actual Pickup Date]),
     CONTAINSSTRING('Freight'[Sender References],MAX('MYOB'[SO Number]))),[Actual Pickup Date])

The final output is shown below:

vyalanwumsft_1-1644572614136.png

 

vyalanwumsft_2-1644572732583.png

 

Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

amitchandak
Super User
Super User

@Kmcdonald , You can create a new column like in the transaction

 

maxx(filter(MYOB , MYOB [sender reference] = transaction[sender reference] && MYOB [SO Number] = transaction[SO Number] ) , MYOB[Actual Pickup Date])

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

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

MayPowerBICarousel

Power BI Monthly Update - May 2024

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

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.