Forum Discussion
masplin
Impactful Individual
2 years agoCant understand why this function based web query wont refresh
I have written 2 functions ot extract price data off the FT website. They seem to work fine in the query editior, but when i refresh they just time out. Fn are (Code as text) as table =>
l...
- 2 years ago
Maybe try to Table.Buffer( ) around the first or 2nd step.
spinfuzer
Solution Sage
2 years agoMaybe try to Table.Buffer( ) around the first or 2nd step.
masplin
Impactful Individual
2 years agoso do you mean add it like this as last step in each functions?
let
Source = Sql.Database("SomeSQLServer", "MyDb"),
MyTable = Source{[Item="MyTable"]}[Data],
BufferMyTable = Table.Buffer(dbo_MyTable)
in
BufferMyTable
Thanks