Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Hello,
I have applied incremental refresh and it's working fine, however my question is there anyway to push the applied steps to the database ?
let
Source = Sql.Database(xxxxxxxxx),
#"Navigation 1" = Source{[Schema = "xxxxxx", Item = "xxxxxxx"]}[Data],
#"Filtered Rows" = Table.SelectRows(#"Navigation 1", each [report_week] >= RangeStart and [report_week] < RangeEnd)
in
#"Filtered Rows"
Thank you
Solved! Go to Solution.
Hey, @ahmedshalabyy12 ,
Your steps are already most likely pushed to the database, you can always verify by right-clicking the last step and see whether the View Native Query is greyed out or not.
If you see it as in the picture not greyed out, you're folding your steps back to the source.
If you use clicking method, and you navigate through your database and then apply SelectRows as you did, most likely it's already pushed back.
Example:
= Table.SelectRows(dbo_base_warehouse_tasks, each [date]>= Date.StartOfMonth( [date]))
this will be folded back like this:
where [_].[date] >= datefromparts(datepart("yyyy", [_].[date]), datepart("m", [_].[date]), 1)
That's a snippet from the Native Query.
That will fold to SQL (so SQL Server does the filtering) as long as folding is still enabled at that step.
How to confirm:
In Power Query, right-click the Filtered Rows step → View Native Query
If it’s enabled and shows a SQL statement with a WHERE clause, it’s folding (filter is pushed).
If it’s disabled, something earlier broke folding, and the filtering happens in Power Query instead.
That will fold to SQL (so SQL Server does the filtering) as long as folding is still enabled at that step.
How to confirm:
In Power Query, right-click the Filtered Rows step → View Native Query
If it’s enabled and shows a SQL statement with a WHERE clause, it’s folding (filter is pushed).
If it’s disabled, something earlier broke folding, and the filtering happens in Power Query instead.
Hey, @ahmedshalabyy12 ,
Your steps are already most likely pushed to the database, you can always verify by right-clicking the last step and see whether the View Native Query is greyed out or not.
If you see it as in the picture not greyed out, you're folding your steps back to the source.
If you use clicking method, and you navigate through your database and then apply SelectRows as you did, most likely it's already pushed back.
Example:
= Table.SelectRows(dbo_base_warehouse_tasks, each [date]>= Date.StartOfMonth( [date]))
this will be folded back like this:
where [_].[date] >= datefromparts(datepart("yyyy", [_].[date]), datepart("m", [_].[date]), 1)
That's a snippet from the Native Query.
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 27 | |
| 24 | |
| 18 | |
| 14 | |
| 14 |
| User | Count |
|---|---|
| 65 | |
| 41 | |
| 40 | |
| 39 | |
| 39 |