Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by longfellow

  1. longfellow

    Grouping of totals based on a field

    Thanks Madawc for those suggestions. I have been working with summary and running totals on test report. I still have a problem of figuring out how to get the exact output. Eg I have 3 fields CPNo, Qname and Calls. In my main report i would like to display Each Qname , the various CPNo's for...
  2. longfellow

    Grouping of totals based on a field

    I did'nt understand what you mean by Grouping data in subreport and placing it in required section Can you explain Thanks Longfellow
  3. longfellow

    Grouping of totals based on a field

    I have got the following columns in my report Callid, QNAME, Calls, Abandoned Calls. Now i have a page total as well as grand total at the end of the report. I want totals grouped by QNAME without disturbing the page total or the grand total.what should i do in Crystal Report to get this ...
  4. longfellow

    How to Disable Preview Pane in CRViewer at runtime?

    First thanks for that info it worked . Yes i was talking about the Grouptree and displaytabs. Now my crystal report is perfect thanks once again
  5. longfellow

    Grand total On LAST PAGE? (Urgent PLZ)

    Thanks for the input ,my grand total is appearing fine at the end of the report Thank you all once again Longfellow
  6. longfellow

    How to Disable Preview Pane in CRViewer at runtime?

    No not the CRviewer. In the CRViewer a preview pane appears during run time,which practically has no use. I just want to suppress that pane. IS it possible to suppress that. Longfellow
  7. longfellow

    Grand total On LAST PAGE? (Urgent PLZ)

    when i use the formulas accum formula: //accum ----------- Used in Details section WhilePrintingRecords; shared numbervar total := total + {table.numberfield}; shared numbervar Grandtotal := Grandtotal + {table.numberfield}; display formula: //display ---------------- Used in Page...
  8. longfellow

    How to Disable Preview Pane in CRViewer at runtime?

    I am using Crystal Reports Ver9, CRviewer91 and VB 6 Form2.CRViewer91.ReportSource = report is the method used to link to the report. When i call the report i don't want to see the preview pane in CRViewer Is it possible longfellow
  9. longfellow

    Grand total On LAST PAGE? (Urgent PLZ)

    Hi Ken You said "If you want BOTH a single page total and a cumulative page total you will need two variables. " How do i use 2 variables or where do i use them can you explain? Thank you Longfellow
  10. longfellow

    How to Disable Preview Pane in CRViewer at runtime?

    I Call Crytal report from VB. At runtime i dont want the preview pane to appear in the crystal Viewer. Is there anyway to disable this? Either setting properties or any other way? Can anyone tell me?
  11. longfellow

    Grand total On LAST PAGE? (Urgent PLZ)

    //display Last OnLastRecord Shared numbervar Grandtotal; GrandTotal When i used this formula while definig it i got an error "The remaining text does not appear to be part of the formula" Whats wrong Can anyone help me?
  12. longfellow

    Grand total On LAST PAGE? (Urgent PLZ)

    No the page total should change from the second page that is the previous pages total also should get added to the current page total
  13. longfellow

    Grand total On LAST PAGE? (Urgent PLZ)

    I require a grand total as well as a page total. Yes i have done {table.numberfield} and select Insert - Summary? What should i do to get a continuous page total
  14. longfellow

    Grand total On LAST PAGE? (Urgent PLZ)

    Its in VB6 and where should i put the display last formula? IS it on the last page if so in which section?
  15. longfellow

    Grand total On LAST PAGE? (Urgent PLZ)

    How do i get a grand total on the last page of my report after using the following formulas for page totals? reset formula: //reset WhilePrintingRecords; shared numbervar total := 0 accum formula: //accum WhilePrintingRecords; shared numbervar total := total + {table.numberfield}...

Part and Inventory Search

Back
Top