Tag not monitored by Microsoft.
Hi @ron barlow
You're missing a closing parenthese after Excel.Workbook. The following should do what you want:
let
Source = Folder.Files("E:\StudentTest"),
#"Removed Other Columns" = Table.SelectColumns(Source,{"Content", "Name"}),
#"Added Custom" = Table.AddColumn(#"Removed Other Columns", "ExcelData", each Excel.Workbook([Content]), type table)
in
#"Added Custom"