Forum Discussion
Google Analytics - data gap
- 5 years ago
not sure if this is the issue you are seeing, but this thread is worth a read:
Currently Google Analytics connector in Power BI does not have the functionality to specify date range dimension directly from the UI. So, Power BI sends the entire date range from the earliest possible to the current date. When date range is large, the queried data may be different.
In order to resolve this, you can connect to Google Analytics first. Then in Power Query Editor, select date column and apply a date range filter to it. This would add a date range explicitly in Power BI. This queries GA API for only the selected date range, and should pull the data within the time interval specified.
For example,
#"Filtered Rows" = Table.SelectRows(#"Added Items", each [Date] >= #date(2019, 9, 1) and [Date] <= #date(2019, 9, 30))
Hope this helps.
Regards,
Community Support Team _ Jing
If this post helps, please Accept it as the solution to help other members find it.