Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

Pivote columns refresh error

Hi all,   I'm having problems when trying to refresh my Power Bi Report. I'm maintaining a report, which is using SQL Server and Sharepoint (with excel files) as two main sources. Report is middle ...
  • edhans's avatar
    edhans
    4 years ago

    Buffering doesn't affect folding. It affects speed. It gathers all of the items in the list at once, then sends the buffered list to the SQL server in the IN clause.

    If you don't buffer, it streams the data into the IN clause and takes significantly longer. 

    As a result, folding or not, I always use a buffered list for List.Contains. And yup, Anonymous taught that trick to me.