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
SwatKat
Frequent Visitor

Look up within Same Table based on Order Created Date

Hi,

 

I have a Orders  table as below in my Power BI file . I need to show list of customers who have Ordered Online in the past. This will be used in a table visual. I tried Look Up but that is not working.  I am unable to understand how to achieve this in M Query either. Any inputs are highly appreciated.  I have tried to created measure too , but that did not work as well 😞 

 

OrderID       OrderCreatedDate          Source       CustomerID      
900011/13/2023Email520005
900021/23/2023Form520005
900033/14/2023Online520005
900045/16/2023Email520005
900051/13/2023Email520006
900061/23/2023Form520006
900073/14/2023Online520006
900085/16/2023Form520006
900094/17/2023Email520007
900105/16/2023Form520007
900116/17/2023Form520007

 

 

 

Expected Output

 

CustomerID       Orderered Online in Past     
520005Yes
520006Yes
520007No

 

Tagging Top solution others since this is something i need to close quickly @Martin_D , @lbendlin , @parry2k , @Ashish_Mathur , @amitchandak . I hope you understand my tight timeline

1 ACCEPTED SOLUTION
Martin_D
Super User
Super User

Hi @SwatKat ,

I'd recommend to solve this problem in a measure, not in M Query. This DAX measure

 

 

Has ordered online = IF ( "Online" in VALUES ('Orders'[Source] ), "Yes", "No" )

 

 

will give you this result:

Martin_D_0-1695016680251.png

Kind regards,

Martin

github.pnglinkedin.png

View solution in original post

3 REPLIES 3
Martin_D
Super User
Super User

Hi @SwatKat ,

I'd recommend to solve this problem in a measure, not in M Query. This DAX measure

 

 

Has ordered online = IF ( "Online" in VALUES ('Orders'[Source] ), "Yes", "No" )

 

 

will give you this result:

Martin_D_0-1695016680251.png

Kind regards,

Martin

github.pnglinkedin.png

alexschindler
Frequent Visitor

Hi SwatKat

Can you not use some measure for this?

Something along the lines of ...

ordered_online =
VAR ordered_online_in_past = CALCULATE(DISTINCTCOUNT(order_table[OrderID]), FILTER('orders_table', orders_table[Source] = "Online"))
RETURN
IF(ordered_online_in_past > 0,
"yes",
"no"
)

Good luck

Alex

Thanks Alex for your solution. I have tried solution provided by @Martin_D  and it worked. It looks like your solution will work pretty fine too. 

 

Thanks for the prompt responses

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.