Hi
I have the following code to convert sheet range to number in power query,
The range named "Tests" would accept any thing except number.
I know there is minor change I have to do, but I couldn't figure it out.
I have the following code to convert sheet range to number in power query,
The range named "Tests" would accept any thing except number.
I know there is minor change I have to do, but I couldn't figure it out.
Power Query:
let
Source = Excel.CurrentWorkbook(){[Name= "Tests"]}[Content],
MyList= Table.ToList(Source){0}
in
MyList