let
Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
#"Changed Type" = Table.TransformColumnTypes(Source,{{"File No", type text}, {"Name", type text}, {"Designation", type text}, {"Status", type text}, {"Passed Date", type any}, {"Card Status", type text}, {"Card Received", type text}}),
#"Removed Other Columns" = Table.SelectColumns(#"Changed Type",{"File No", "Name", "Designation", "Card Received"}),
#"Filtered Rows" = Table.SelectRows(#"Removed Other Columns", each [Card Received] <> null and [Card Received] <> "")
in
#"Filtered Rows"