Forum Discussion
Replace Value of multiple columns using Query Editor but the columns are increasing every refresh.
- 3 years ago
Hi,
The code in your Advanced Editor should look something like below.
let Source = Excel.Workbook(File.Contents("C:\Users\xxxx\Downloads\sampledata.xlsx"), null, true), #"Removed Other Columns1" = Table.SelectColumns(Source,{"Data"}), Data = #"Removed Other Columns1"{0}[Data], #"Promoted Headers" = Table.PromoteHeaders(Data, [PromoteAllScalars=true]), // ********** ReplaceNulls = Table.TransformColumns(#"Promoted Headers",{},(x) => Replacer.ReplaceValue(x,null,0)) // ********** in ReplaceNulls // don't forget about this also 🙂
Hi,
IF your whole InputTable looks something like this (?):
AND you get nulls only in "values",
THEN you could replace all nulls with:
let
Source = InputTable,
ReplaceNulls = Table.TransformColumns(Source,{},(x) => Replacer.ReplaceValue(x,null,0))
in
ReplaceNulls
Not sure what you mean ref replacing those "additional" columns, but maybe:
1) UNPIVOT (after replacing nulls)
2) Filter out/keep only the columns you want (?)
3) Pivot back
Hello ams1
Thanks for your quick reply.
Where do I put this code?
let
Source = InputTable,
ReplaceNulls = Table.TransformColumns(Source,{},(x) => Replacer.ReplaceValue(x,null,0))
in
ReplaceNulls
How do i add that in my code?
Below is my code inside Advanced Editor:
let
Source = Excel.Workbook(File.Contents("C:\Users\xxxx\Downloads\sampledata.xlsx"), null, true),
#"Removed Other Columns1" = Table.SelectColumns(Source,{"Data"}),
Data = #"Removed Other Columns1"{0}[Data],
#"Promoted Headers" = Table.PromoteHeaders(Data, [PromoteAllScalars=true])
in
#"Promoted Headers"
- ams13 years agoResponsive Resident
Hi,
The code in your Advanced Editor should look something like below.
let Source = Excel.Workbook(File.Contents("C:\Users\xxxx\Downloads\sampledata.xlsx"), null, true), #"Removed Other Columns1" = Table.SelectColumns(Source,{"Data"}), Data = #"Removed Other Columns1"{0}[Data], #"Promoted Headers" = Table.PromoteHeaders(Data, [PromoteAllScalars=true]), // ********** ReplaceNulls = Table.TransformColumns(#"Promoted Headers",{},(x) => Replacer.ReplaceValue(x,null,0)) // ********** in ReplaceNulls // don't forget about this also 🙂