Forum Discussion
qihuiyu
4 years agoRegular Visitor
Incremental Refresh with Odata
We are currently working on a Odata - Power BI based reporting solution for our clients. We would like to make Incremental Refresh works on our odata connector. I found this post https://communi...
qihuiyu
4 years agoRegular Visitor
Hi, we tried the following query:
let
Source = Odata.Feed("https://server/odata/TimeSeriesRawResults"),
#"Changed Type" = Table.TransformColumnTypes(Source,{{"Date", type datetime}}),
#"Filtered Rows" = Table.SelectRows(#"Changed Type", each [Date] >= RangeStart)
in
#"Filtered Rows"
However on the sever log we dont see pbi sending request with $filter dates.
- lbendlin4 years agoSuper User
You need both RangeStart and RangeEnd, and they need to be included as filters in your ODATA feed URL, not in subsequent steps.