dataRange, uses the ranges first row to assign column names (Table.PromoteHeaders), specifies the columns' data types (Table.TranformColumnTypes) and assigns the data to the variable tab: let
tab = Table.TransformColumnTypes(
Table.PromoteHeaders(Excel.CurrentWorkbook(){[Name="dataRange"]}[Content]),
{
{"Col A" , type text },
{"Col B" , type number},
{"Col C" , type number}
}
)
in
tab