f0rd42
f0rd42

Reputation: 1459

PowerQuery: Avoid reload every time a column is added

How can I avoid a complete reload from the e.g. SQL Server every time I add / change a custom column in PowerQuery? I'd like PowerQuery to work with the local (Data Model) data only unless I hit the refresh button.

Upvotes: 1

Views: 212

Answers (1)

You can use Table.Buffer to keep the table in memory for subsequent calculations.

Upvotes: 3

Related Questions