Forum Discussion
southgrad10
Helper II
2 years agoReport in Desktop vs. Service not behaving the same
I have a report that is capturing sales for the day by the hour. For some reason, at 7pm CT, the report goes all zero and it immediately sets to the next day. It doesn't behave like that in my Desk...
southgrad10
Helper II
2 years agoMy solution to this issue was to add a Date column to the table in SQL Server. The Date was simply today's date in DATE format. e.g. CAST(GETDATE() AS DATE). I used that date instead of TODAY() in the measures. It works beautifully. It has been working great for a week now.