Replace null values with table header

Martin sherk

Board Regular
Joined
Sep 11, 2022
Messages
94
Office Version
  1. 365
  2. 2016
I have a power query table that consists of 2 queries appended together, I added two blank rows between each table to separate them from each other, now how can I replace the nulls in the blank row with the table headers?

Power Query:
let
    Source = Table.Combine({#"PAY only", #"REC only", #"with Diff"}),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"Remarks", type text}}),
    #"Duplicated Column" = Table.DuplicateColumn(#"Changed Type", "Remarks", "Remarks - Copy"),
    Custom1 = #"Duplicated Column",
    #"Removed Other Columns" = Table.SelectColumns(Custom1,{"Remarks - Copy"}),
    #"Removed Duplicates" = Table.Distinct(#"Removed Other Columns"),
    #"Added Index" = Table.AddIndexColumn(#"Removed Duplicates", "Index", 0, 1, Int64.Type),
    #"Added Index1" = Table.AddIndexColumn(#"Added Index", "Index.1", 2, 1, Int64.Type),
    #"Appended Query" = Table.Combine({Custom1, #"Added Index",#"Added Index1"}),
    #"Sorted Rows" = Table.Sort(#"Appended Query",{{"Remarks - Copy", Order.Ascending}, {"Index", Order.Ascending}, {"Index.1", Order.Ascending}}),
    #"Removed Columns1" = Table.RemoveColumns(#"Sorted Rows",{"Remarks - Copy", "Index", "Index.1"})
in
    #"Removed Columns1"
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)

Forum statistics

Threads
1,215,219
Messages
6,123,689
Members
449,117
Latest member
Aaagu

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top