Hi,
Here is a quick and dirty way of doing it (on the data sample you posted)
Code:
let
Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
#"Changed Type" = Table.TransformColumnTypes(Source,{{"Column1", type date}, {"Column2", Int64.Type}, {"Column3", type text}}),
#"Filled Up" = Table.FillUp(#"Changed Type",{"Column1"}),
#"Replaced Errors" = Table.ReplaceErrorValues(#"Filled Up", {{"Column2", null}}),
#"Filtered Rows" = Table.SelectRows(#"Replaced Errors", each ([Column2] <> null))
in
#"Filtered Rows"
Bookmarks