Forum Discussion
MontanaBlack
2 years agoNew Member
Keep The Existing Data In Your Power BI Dataset And Add New Data To It Using Incremental Refresh
Hi Everyone, for using the incremental refresh function, I am trying to add a column to my dataset, which adds automatically the date when the upload was made and Power BI keeps the data that’s a...
lbendlin
2 years agoSuper User
That's not how incremental refresh works. Incremental Refresh expects immutable data (that won't change after it is written) and it expects RangeStart and RangeEnd to define partition boundaries. The typical usage pattern is
RangeStart <= [Created Date] and [Created Date] < RangeEnd
You seem to be looking for a different refresh type.