CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 5 of 5

Thread: Crystal Report

  1. #1
    Join Date
    Mar 2003
    Posts
    18

    Crystal Report

    I have created a sub-report successfully. But the data is getting repeated till it fits the whole page. How can it be avoided? Please do help me out.

  2. #2
    Join Date
    Mar 2003
    Posts
    15
    Hi

    You can set a property that suppress if duplicated true so that you can avoid the Duplicate Records
    Sathish.K

  3. #3
    Join Date
    Mar 2003
    Posts
    18
    Thanks for helping out. It works perfectly now.

  4. #4
    Join Date
    Mar 2003
    Posts
    18
    I have another question. Can you please help me out. I want some data's to be displayed in Uppercase. Can this be achieved.

  5. #5
    Join Date
    Mar 2003
    Posts
    15
    what ever columns you want convert in uppercase just create a formula column in that just return the value in uppercase ..

    Alternatively when you sending a query to crystal report you can change to upper case for example if oracle is the backend means you can frame the query like this

    Select upper(column name a), column name b from table name

    Hope the above will help you

    Regards

    Sathish.K

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