Forum Discussion
Incremental refresh
- 1 year ago
Hi laq2025 , Could you please try this
Create Parameters:RangeStart (e.g., 1/1/2024)
RangeEnd (e.g., 12/31/2024)
Filter Query in Power Query:
Table.SelectRows(Source, each [DateColumn] >= RangeStart - #duration(3, 0, 0, 0) and [DateColumn] <= RangeEnd + #duration(365, 0, 0, 0))
Set Incremental Refresh:
Keep data for 1 year.
Refresh data from 3 days before today.
If this post helped please do give a kudos and accept this as a solution
Thanks In Advance
Hi,
This article will help you. Configure incremental refresh for Power BI semantic models - Power BI | Microsoft Learn
Thanks for the link! But the setting does not include future dates in the refresh? Only incrementally refresh data starting x days before refresh date?