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
geraldmeunier
New Member

dynamic column name in formula

Hi everyone,

 

Let's say I have several columns A, B and C

I create a new column with a formula like :

= [A] + [B]

 

Let's say I want column B to be driven from a function that we could call fnGetParamater("Parameter_a")

 

Is there a way to have a syntax that would be like :

= [A] + ["& fnGetParamater("Parameter_a")& "]

 

I know this is not working but you get the idea...

Any suggestion welcome !

 

Gerald

 

1 ACCEPTED SOLUTION
ImkeF
Super User
Super User

Not completely sure what you're after, but could it be this?:

 

[A] + Record.Field(_, fnGetParamater("Parameter_a") )

 

It will return the value from the  colum whose name the function returns.

 

 

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

3 REPLIES 3
ImkeF
Super User
Super User

Not completely sure what you're after, but could it be this?:

 

[A] + Record.Field(_, fnGetParamater("Parameter_a") )

 

It will return the value from the  colum whose name the function returns.

 

 

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

Thanks a lot !
for my own culture (yes I'm new to power query), what does the underscore really stand for in the

"Record.Field(_, ColumnName)" formula ?

Hi @geraldmeunier 

it stands for the record of the current row (if you use your fomula in a Table.AddColums-formula for exapmle).

There, the third argument is a function into which the current record will be automatically pumped into. 

There's some syntax sugar involved: https://docs.microsoft.com/en-us/powerquery-m/understanding-power-query-m-functions 

which means that you can use reference the columns with square brackets only, but if you cannot use that shortcut syntax, you have to explictly reference the record. When the "each"-keyword is used, this can be done by using the underscore "_",

but if you want to nest functions, you can replace the each by ordinary functions like so:

 

(x) => MyFunction(x)

 

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