Note: Forums will be making significant UX changes to address key usability improvements surrounding search, discoverability and navigation. To learn more about these changes please visit the announcement which can be found HERE.

Locked How to use the Shared Variable in Crystal report

  • Sunday, October 14, 2007 5:55 AM
     
     

     

    How to use the Shared Variable in Crystal report

    The scenario is: To share the variable declared in the Main report to all the Sub report

All Replies

  • Monday, October 15, 2007 4:32 AM
     
     Answered

    Create new formula in Main Report & have following text in that

    shared numberVar manish1 :=111 ;

    You have to drag & drop this formula somewhere in report

     

    Create new formula in Sub Report & have following text in that

    shared numberVar manish1;

    manish1;

     

    Hope it helps