Forum Discussion
Service Report stops returning data
- Anonymous7 years ago
Finally I think this has been solved. This is a direct query report, so the filter below requires a download and refresh
#"Filtered Rows" = Table.SelectRows(#"Sorted Rows", each Date.IsInCurrentMonth([Date]))
The solution is to change the logic so the query is passed through to the database
#"Filtered Rows" = Table.SelectRows(#"Sorted Rows", each ([ThisMonthFlag] = "Y"))
This makes sense now. but I am not sure if this behaviour is by design ?
Just happened again. Data is only returned from the dbo tables. Download the dataset and refresh then upload to service. All is working again. Client is not happy. Anyone any ideas? Can anyone at Microsoft pick this up ?
Been having the same issue. It broke earlier this week when the issues began. Now that it's "resolved", I had to delete the data source from service and republish from the desktop. It appears to be working okay now but we'll see how it goes.