Forum Discussion
Incremental Refresh
my numbers in visual in Desktop and Service do not match. I saw some posts where dates in Service are in UTC
That's correct. Incremental Refresh uses a regular UTC calendar.
- stribor452 years agoPost Prodigy
so my RangeStart and RangeEnd need to be adjusted? My API endpoint takes DateTime values using my offest. how do I adjust them?
- lbendlin2 years agoSuper User
There are Power Query functions to shift timezones, or you can use #duration.
- stribor452 years agoPost Prodigy
I am more concerned about how this work. In my Desktop I call APIs which accept datetime like this with my time zone being 4 hours behind. i have to call it this way because by numbers depends on it.
DateTime.ToText(RangeStart,"yyyy-MM-ddTHH:mm:ss-04:00")As you said before when refresh happens on Service side which after initial set up they will and since it is UTC time how do i do that? I dont understand how at the same time I call API's with EST time (-4 hours) and in service I call API with UTC time?