Report service (report builder)- when I select the specific date it does not return values

Victor Silva 0 Reputation points
2023-03-21T16:53:40.6466667+00:00

Hi all, i have a problem with my reports, when i select a specific date on reprot builder, it's doesn't return values, but in others date it return normal values. In console of Google chrome, it's give me a "manifest.json" error.

has anyone had a similar problem?

SQL Server Reporting Services
SQL Server Reporting Services
A SQL Server technology that supports the creation, management, and delivery of both traditional, paper-oriented reports and interactive, web-based reports.
2,912 questions
{count} votes

3 answers

Sort by: Most helpful
  1. AniyaTang-MSFT 12,441 Reputation points Microsoft Vendor
    2023-03-22T03:39:02.27+00:00

    Hi @Victor Silva

    This sounds strange, what kind of date parameter did you create, did you use a calendar control or a drop-down list? Are you sure you have the corresponding data for this specific date?

    As for the manifest.json issue, here's a link to a simple Chrome extension that allows Microsoft SSRS reports to render correctly: https://github.com/rmsy/SSRS-Fix/blob/master/manifest.json.

    Hope this can help you.

    If the answer is helpful, please click Accept Answer and Up-Vote for the same. If you have any questions, please feel free to let me know.

    Best regards,

    Aniya

    0 comments No comments

  2. Olaf Helper 44,216 Reputation points
    2023-03-22T06:58:27.2733333+00:00

    Does the date data have a time portion as well? Then a simple

    WHERE DateColumn = @date
    

    don't work, you have to use something like:

    WHERE DateColumn >= @date AND  DateColumn < DATEADD(day, 1, @date)
    
    0 comments No comments

  3. Victor Silva 0 Reputation points
    2023-03-23T14:48:31.6866667+00:00

    Hi all, Apparently my problem is a conversion from format of the date. It's converted to utc, and after to local again.

    i'm debugging yet, I'll be back soon with more information.

    Thanks all


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.