Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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!
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
71 | |
67 | |
51 | |
39 | |
26 |
User | Count |
---|---|
87 | |
54 | |
45 | |
40 | |
36 |