Forum Discussion
ctedesco3307
Resolver II
4 years agoPower M Query - Table.SelectColumns tries to convert all to number
Hi - I'm trying to use Power Query to pull in selected columns from a table and it seems like every column I reference, accept the frust one is attemped to be convereted to number. IF I query one col...
- 4 years ago
The list of columns you want to select needs to be within {}, e.g.
= Table.SelectColumns(MSS_Flat_Fee_Hours, { "Start date", "End date" } )
johnt75
Super User
4 years agoThe list of columns you want to select needs to be within {}, e.g.
= Table.SelectColumns(MSS_Flat_Fee_Hours, { "Start date", "End date" } )