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

Join the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now

Reply
HarveyM
Helper I
Helper I

Custom Column matching table values

Hi,

 

I currently have two tables, table 1 and table 2. In table 1 there is an envID, which matches to table 2. In table 2 a bgID is assocaited with the environment IDs. Multiple envIDs can share the same bgID. I want to create a custom column in table 1 that can match envIDs with table 2, and then set the value to the corresponding bgID. Below is an example of the setup.

 

Data Example.png

Thank you

1 ACCEPTED SOLUTION

@HarveyM Dangit, sorry gave you a DAX solution when you posted in the Power Query forum. Yeah, that code will not work in Power Query, it is for a DAX calculated column. What I would recommend in Power Query would be to do a Merge query.



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

3 REPLIES 3
Greg_Deckler
Community Champion
Community Champion

@HarveyM Couple ways, here is one:

Column = 
  VAR __envID = 'Table 1'[envID]
RETURN
  MAXX(FILTER('Table 2',[envID] = __envID),[bgID])

 



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Hi @Greg_Deckler 

 

When using the method you sent over, I get a 'Token Eof expected' under the __envID variable.

It happens before and after I have changed table 1 & 2 over to the real table names.

 

Could you please advise. Thank you 🙂 

@HarveyM Dangit, sorry gave you a DAX solution when you posted in the Power Query forum. Yeah, that code will not work in Power Query, it is for a DAX calculated column. What I would recommend in Power Query would be to do a Merge query.



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

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

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

FabCon and SQLCon Highlights Carousel

FabCon &SQLCon Highlights

Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.