Hi
How can i do the reverse of Fill Down in PQ.
ie remove the duplicate and keep only the first one in a column (Eg "Store" in the below code)
let
Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
#"Changed Type" = Table.TransformColumnTypes(Source,{{"Store", type text}, {"Sales", Int64.Type}})
in
#"Changed Type"
How can i do the reverse of Fill Down in PQ.
ie remove the duplicate and keep only the first one in a column (Eg "Store" in the below code)
let
Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
#"Changed Type" = Table.TransformColumnTypes(Source,{{"Store", type text}, {"Sales", Int64.Type}})
in
#"Changed Type"