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

Looking for same events in two fact tables and returning information

Hi, 

I'm struggling for some time on this problem. I have two fact tables with Event ID and Date. If the Event ID and Date from Table 2 are equal to those in Table 1, I can assume the event is the same so I need to extract the Location information from Table 2 to the same event in Table 1. If the event in Table 1 isn't in Table 2, Location information is left blank. 

 

Can you help me to develop a DAX function to this new column which solves my problem?

Example: 

 

Table 1:

Event IDDate
104/03
104/01
504/01
1204/01
1204/02

 

Table 2:

Event IDDateLocation
104/03A
104/02B
504/02A
1204/02C

 

Desired Table 1:

Event IDDateNew column - Location
104/03A
104/01 
504/01 
1204/01 
1204/02C

 

Thanks so much!

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Anonymous , Create a new column in table 1

New column - Location = maxx(filter('Table 2','Table 2'[Event ID] = 'Table 1'[Event ID] && 'Table 2'[Date]= 'Table 1'[Date]),'Table 2'[Location])

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@Anonymous , Create a new column in table 1

New column - Location = maxx(filter('Table 2','Table 2'[Event ID] = 'Table 1'[Event ID] && 'Table 2'[Date]= 'Table 1'[Date]),'Table 2'[Location])

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.