Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hello, I don't know how to solve the problem that I described below.
I'm loading data from SQL Server and I'm having a problem when loading this data through a gateway in an online environment.
The purpose is not to load all data from SQL database and then use filter but only get the data that interests.
I have all in new version.
Can sameone help me solve this problem?
Thank you very much
Dan
Oh, thank you. Dint know about back folding to the server. Thank you
Hi Dan,
For starters, your method of reducing data in Power BI is incredibly inefficient. You can import your first SQL data into Power Query then perform the transformations you need and these will fold back to the server, so won't ever actually bring in all the data.
Once you have your first list (Table1), you should just be able to buffer Table1[ListColumn] and send it to the second DB within the folded native query by using a table filter something like this:
Table.SelectRows(
Table2PreviousStep,
each List.Contains(List.Buffer(Table1[ListColumn]), [Table2FilterColumn])
)
Secondly, when you say "in the online environment, I can't perform the update", what does this actually mean? Do you get a processing error? An authentication error? Nothing happens? Etc.
Pete
Proud to be a Datanaut!
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.