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
ryan_b_fiting
Post Patron
Post Patron

Merge Queries - Expanded Table uses a formula

Hello Community - 

 

I am in need of some assistance.  I have a step in Power query where I am merging queries.  Once merged, I am expanding a single column from that merged query which is a 'Bonus Rate'.  The end value needs to be a Bonus $ Amount.  Instead of having to create another step that would create a Custom Column to simply take the Salary ($) * Bonus Rate (which is the expanded column from the merged query), is there a way to nest the custom column step into the 'Expand Merge Queries' step? 

 

Currently My query step is this:

= Table.ExpandTableColumn(#"Merge Bonus Data", "Bonus", {"Rate with Vacancy Hedge"}, {"Bonus Rate"})

My next step would be to create the custom column, but I want to know if there is a way that I can take the step from above and tweak it to hace the "Rate with Vacancy Hedge" * Salary($) in the same step?

 

I have several columns where I need to do this, so ideally rather than having to create a custom column for each one, I would like to consolidate those steps.

 

Thanks in advance for any insights!

Ryan F

1 ACCEPTED SOLUTION
ImkeF
Super User
Super User

Hello @ryan_b_fiting ,
you cannot include the calculation in the Expand-step/formula.
But if you are sure that there will be always just one row in the merged column, then instead of expanding the table, you could reference the required field in the unexpanded table instead like so:

Table.AddColumn(#"Merge Bonus Data", "myCalculation", each  [Bonus]{0}[#"Rate with Vacancy Hedge"] * [#"Salary($)"])

 

Imke Feldmann (The BIccountant)

If you liked my solution, please give it a thumbs up. And if I did answer your question, please mark this post as a solution. Thanks!

How to integrate M-code into your solution -- How to get your questions answered quickly -- How to provide sample data -- Check out more PBI- learning resources here -- Performance Tipps for M-queries

View solution in original post

1 REPLY 1
ImkeF
Super User
Super User

Hello @ryan_b_fiting ,
you cannot include the calculation in the Expand-step/formula.
But if you are sure that there will be always just one row in the merged column, then instead of expanding the table, you could reference the required field in the unexpanded table instead like so:

Table.AddColumn(#"Merge Bonus Data", "myCalculation", each  [Bonus]{0}[#"Rate with Vacancy Hedge"] * [#"Salary($)"])

 

Imke Feldmann (The BIccountant)

If you liked my solution, please give it a thumbs up. And if I did answer your question, please mark this post as a solution. Thanks!

How to integrate M-code into your solution -- How to get your questions answered quickly -- How to provide sample data -- Check out more PBI- learning resources here -- Performance Tipps for M-queries

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.

Top Solution Authors
Top Kudoed Authors