Forum Discussion

tez's avatar
tez
Resolver I
6 years ago
Solved

DirectQuery - data missing on app.powerbi.com

I created a DirectQuery dashboard for timed data (helpdesk ticket number per hour, bar chart). Data is displayed correctly at Power BI Desktop. When I publish it to app.powerbi.com and connect it to ...
  • tez's avatar
    tez
    6 years ago

    I think I found the problem. I had a filter in the query:

     

    = Table.SelectRows(dbo_CAL_IncAndSr, each [Field0] = 0 or Date.IsInCurrentDay([Field1]) or Date.IsInPreviousNDays([Field1], 21) or Date.IsInCurrentDay([Field2]) or Date.IsInPreviousNDays([Field2], 21))

     

    As soon as I removed the filter, the update - until now - worked without any problems. Maybe this is also interesting for other users.