CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Apr 2012
    Posts
    3

    Crystal report formula

    How do I display fiscal year in Cross tab report: I would like to get the columns as 2012-2013, 2013-2014 etc

  2. #2
    Join Date
    Apr 2012
    Posts
    10

    Re: Crystal report formula

    Have you tried formulas like :

    toText (year(CurrentDate)) + "-" + toText (year(CurrentDate) + 1)
    ?

    I am a beginner, and I do not see other solutions, but this works (though is a bit boring, depending on the time range)

  3. #3
    Join Date
    Apr 2012
    Posts
    3

    Re: Crystal report formula

    Thank you very much. It works perfect.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured