General discussion

  • Creator
    Topic
  • #2272326

    Getting a Date

    Locked

    by compumarc ·

    I’m trying to update one of my reports in SQL Reporting Services. I’m not a programmer in every sense but understand concepts to apply to a situation. I created a new column in my report to obtain a date by adding 90 days to a specific date. How can I accomplished this in Reporting Services using any of the available functions be in Reporting Services or Visual Basic.

All Comments

  • Author
    Replies
    • #3269317

      Reply To: Getting a Date

      by eschlangen ·

      In reply to Getting a Date

      To me, the simplest thing would be to add a computed value to your underlying query using the DATEADD function. For date x,
      DATEADD(‘d’,90,x) will give you the date that is 90 days after x.

    • #3112265

      Reply To: Getting a Date

      by compumarc ·

      In reply to Getting a Date

      This question was closed by the author

Viewing 1 reply thread