Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi, is there a way to replace values with "null" from ALL columns into NULL or Blank values in M query?
Something like this but applied to all of the columns:
Table.ReplaceValue(Source,"null",null,Replacer.ReplaceValue,{ALL COLUMNS})
Thanks
Solved! Go to Solution.
Hi. Yes you can. Try something like this:
= Table.ReplaceValue(Source,"",null,Replacer.ReplaceValue, Table.ColumnNames(#"Step with all colums") )
You can list the columns of one step in order to do the change. This will replace "" (blanks) with null.
Regards,
Happy to help!
Hi @msantillan ,
Press Ctrl+A select all column and right the table then use replace value feature.
You can check the query through Advance Editor feature.
Best Regards,
Jay
Community Support Team _ Jay Wang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @msantillan ,
Press Ctrl+A select all column and right the table then use replace value feature.
You can check the query through Advance Editor feature.
Best Regards,
Jay
Community Support Team _ Jay Wang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@ibarrau nailed it. That is the solution.
DAX is for Analysis. Power Query is for Data Modeling
Proud to be a Super User!
MCSA: BI ReportingLike @edhans said.
The "#"Step with all colums" is probably "Source" here for your case.
(It's mostly the first argument of the Table.ReplaceValue-function for these use cases)
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
Hi. Yes you can. Try something like this:
= Table.ReplaceValue(Source,"",null,Replacer.ReplaceValue, Table.ColumnNames(#"Step with all colums") )
You can list the columns of one step in order to do the change. This will replace "" (blanks) with null.
Regards,
Happy to help!
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 60 | |
| 43 | |
| 40 | |
| 37 | |
| 21 |
| User | Count |
|---|---|
| 178 | |
| 127 | |
| 116 | |
| 77 | |
| 54 |