Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more
Is there a way to create the custom column in yellow, excluding the null values? I'm not sure if this is even ahievable in Power Query.. any advice would be appreciated.
Solved! Go to Solution.
Hi @Anonymous ,
you can add a custom column with the following formula:
Text.Combine(List.Select( Record.FieldValues( Record.RemoveFields(_, {"ID"}) ), (l) => l <> null), "@gmail.com%2C") & "@gmail.com"
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
Sure:
The _ gets all fields from the current row in a record format.
But we don't need the ID-column. So we the Record.RemoveFields function removes just that field.
Then the Record.FieldValues-function transforms that record into a list, containing only the field values.
But there are nulls in there that shouldn't be used to create the final string.
Therefore we use the List.Select function with (l) => l <> null as function argument: l stands for each item in the list and I <> null means that only items that are not null will be kept.
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
@ImkeF's answer looks good except that the ID = 444 row returns "@gmail.com".
Here's a slightly different approach that applies the "%2C" and "@gmail.com" separately:
Text.Combine(List.Transform({[name1], [name2], [name3], [name4]}, each _ & "@gmail.com"), "%2C")
Note that null & "@gmail.com" returns null.
Hi @Anonymous ,
you can add a custom column with the following formula:
Text.Combine(List.Select( Record.FieldValues( Record.RemoveFields(_, {"ID"}) ), (l) => l <> null), "@gmail.com%2C") & "@gmail.com"
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
this worked like a charm! could you explani what the query is doing? I'm trying to understand this part "
Record.RemoveFields(_, {"ID"}) ), (l) => l <> null
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 4 | |
| 4 | |
| 3 | |
| 2 | |
| 1 |
| User | Count |
|---|---|
| 11 | |
| 11 | |
| 4 | |
| 4 | |
| 4 |