How to get the subtotals to only print on page 1 of the report?

Hello :
Could someone tell me how to best accomplish this in CR 2008?. Thank you in advance!
On Page 1 of the report, I only want to print a summary of provider then the total of each procedure type performed at the clinic.
Here's a sample of the result that I'm looking for:
    Dr. One
     Office visit, new         = 15
     Office Visit, established = 10
     New wellness care         = 18
    Dr. Two
     Office visit, new         = 5
     Office Visit, established = 18
     New wellness care         = 20
    Dr. Three
     Office visit, new         = 15
     Office Visit, established = 10
     New wellness care         = 10
     Established wellness care = 30
**The 2nd part of this report I was able to get the desired result, but I thought it would be helpful to share this informationl.
The subsequent pages is grouped by provider, visit date, patient name, date of birth,
and procedure description. Then subtotal by provider.
Here's a sample result
    *Dr. One*
     12/1/2009 Patient 1  06/29/1977 Office visit,new
     12/1/2009 Patient 2  5/5/1960  office visit,new
     1/5/2010  Patient 3  8/18/59   Office Visit, established
     1/14/2010 Baby 1     11/1/2009 New wellness care      
    +Total = 4+
    Dr. Two
     09/16/2009 Patient 4 7/19/80   Office visit, new
     10/20/2009 Patient 4 02/02/1986   Office visit, new 
     10/23/2009 Patient 4 06/15/1994   Office visit, new 
     11/11/2009 Patient 4 02/02/1972  Office visit, established
     1/12/2010  Baby Boy 1/1/2008    New wellness care 
     1/12/2010  Baby Girl2 9/21/2009  New wellness care
     1/18/2010  Baby Girl3 8/1/2009  New wellness care
     1/19/2010  Baby Girl4 12/21/2009  New wellness care
    Total = 8

Copy the date parameters to the sub-report.  In the sub-report criteria use the local parameters to select the date field data.  In the sub-report linking link the main report parameter field(s) to the sub-report parameter fields (not the ?PM-?<parametername> default links).   You may need to also link the data in the sub-report by the Dr. field.
Good luck,
Eric

Similar Messages

  • When downloading a pdf, the print command show a document in the preview but only prints blank pages

    When downloading a pdf and using the print command, it shows  the correct document in the preview but only prints blank pages.  If I use the save command and try to open with Acrobat 11.0.07, it says it wasn't correctly decoded and can't open it.  If I do the same thing on my old Macbook (10.6.8) all works fine from the same website with the same document.  Any ideas?
    D

    This article maybe help to you, change pdf file type to other application like adobe reader, See:
    * https://support.mozilla.com/en-US/kb/Managing%20file%20types

  • Can only print one page to the Adobe PDF printer "device".

    When I print to the Adobe PDF printer device I can only print one document.  When I print a second document I get the message "Adobe PDF Creation cannot continue because Acrobat is not activated."  However, if I reboot, I can again print a single document. 
    I'm running Windows 7 pro-64 bit.  I have Adobe Acrobat X pro, version 10.1.7 installed AND ACTIVATED.
    Any suggestions for solving this damn headache would be much appreciated.  I'm sure tired of rebooting to print PDFs.
      George Sundell

    OK, here are a couple of ideas to try....
    Go to Help and try Detect and Repair.
    If you have Acrobat, you can try to distill the document or try a Save As
    [signature deleted]

  • How to get a LONG email to print all pages, not just page 1

    For a long email (one that SHOULD print out to 2+ pages)
    and When going to the print preview window...ONLY page 1 shows, and only page 1 prints.
    The process of changing the Per Cent to a font that is unreadable SOMETIMES will put the entire email on that ONE PAGE
    But, That is unacceptable.
    Also, can I REMOVE that information on the left so it does NOT print out (I E. the Outlook bar with "inbox" / "Sent" "Drafts" etc, and ALL file names.
    Also...are people receiving our emails,...seeing THOSE "FILES" on the left?

    THANK YOU THANK YOU!!!!
    2 weeks of agonizing over bad printouts just changed over to Outlook
    Never checked out the 3 little dots, before!!!!

  • Message- Print No pages from the document were selected to be printed

    I have had this application for some time, simply never used it.  Last night I tried converting a PDF file to word, unsuccessfully, I might add.
    Today, whilst printing a page, my printing settings appear to have been reset because when I selected Print selected page, the following message appeared:
    Print
         No pages from the document were selected to be printed message
    How do I reconfigure my settings to preview rather than defaulting to PDF?  Kindly advise.  Cheers.

    I have only been able to print by exporting from iphoto. I have a new HP printer and there is software that supports photo printing ("HP photo smart") and I have been able to do it this way. On some occasions I have been able to use the iphoto>print>then preview before actually printing. There is a print option on the preview pane and that has worked on occasion...unsure why it doesn't work always. Please pass on any other hints, or let me know if this works for you!!
    G4 Power book 867Mhz   Mac OS X (10.3.9)  

  • When I print from my pad it only print one page at a time, why?

    Why can I only print one page at the time when using the iPad?

    Generally all you need to do is fill in an appropriate Album Artist. For more details see my article on Grouping Tracks Into Albums, in particular the topic One album, too many covers.
    tt2

  • How do I get System.out.format to print out doubles with the same precision

    Using the System.out.format, how do I print out the value of a double such that it looks exactly like it does if it were print from a System.out.println.
    For example, take the following code:
    double d = 12.48564734342343;       
    System.out.format("d as format: %f\n", d);
    System.out.println("d as   sout: " + d);Running the code, I get:
    <font face="courier">
    d as format: 12.485647
    d as sout: 12.48564734342343
    </font>
    The precision of d has been lost.
    I could bump up the precision as follows:
    double d = 12.48564734342343;
    System.out.format("d as format: %.14f\n", d);
    System.out.println("d as   sout: " + d);That appears to work, I get:
    <font face="courier">
    d as format: 12.48564734342343
    d as sout: 12.48564734342343
    </font>
    However, that solution fails if d has a different precision, say 12.48. In that case I get:
    <font face="courier">
    d as format: 12.48000000000000
    d as sout: 12.48
    </font>
    So how do I get System.out.format to print out doubles with the same precision as System.out.println?
    Thanks..

    YoungWinston wrote:
    Schmoe wrote:
    Interesting, but this is not what I am looking for...Your original question was "how do I print out the value of a double such that it looks exactly like it does if it were print from a System.out.println", and you've been told how to do that (although the pattern given by sabre may be a bit excessive - you should only need 15 '#'s).The initial phrase from my question was "Using the System.out.format, how do I..".
    It's worth remembering that, unlike the Format hierarchy, 'format()' is NOT native to Java. It's a convenience implementation of the 'printf()' and 'sprintf()' methods provided in C, and first appeared in Java 1.5. Those methods were designed to produced fixed-format output; 'println()' was not.Perhaps it is the case that this can't be done.
    Furthermore, Double.toString(), which is what is used by println() does not produce the same format in all cases; format("%.14f\n", d) does. TrySystem.out.println(1.8236473845783d);
    System.out.println(1823647384.5783d);and you'll see what I mean.I am fine with that. It still displays all the precision.
    I am simply looking for a way to quickly print out multiple variables on a sysout while debugging. I want it as syntactically sweet as possible. System.out.println can be a pain when outputting multiple variables like the following:
    "System.out.println("a: " + a + "; b:" + b + "; c: " + c);"
    For some reason, my fingers always typo the plus key.
    I was hoping that System.out.format would be easier,along the lines of:
    "System.out.format("a: %f, b: %f, c: %f\n", a, b, c);"
    From a syntactical sweetness point of view, it is easier. However, the %f on doubles truncates the precision. I figured there must be a way to get the full precision.
    DecimalFormat is syntactically sour for this purpose, as you need to instantiate the DecimalFormat.
    fwiw I have enjoyed reading the suggestions in this thread...

  • I am unable to print "ALL Pages" using the Adobe Print plugin in Firefox, only the first page gets printes. however IE works perfectly fine.Please advise. Is it some way that firefox identifies the complete web page..? PLease help

    I am unable to print "ALL Pages" using the Adobe Print plugin in Firefox, only the first page gets printes. however IE works perfectly fine.Please advise. Is it some way that firefox identifies the complete web page..? PLease help

    Does the entire webpage appear in Print Preview? <br />
    File > Print Preview

  • Since updating to the new version the work web page that i use will only print 2 pages even if there are more. I can not get it to print all the pages in the document.

    for instance....I have a documents that has 6 pages, I can scroll down and see all the pages but when i hit the print button it will only print 2 pages. I tried to change it in the setting part but there is no feature that allows you to change it.

    For many years, Firefox has problems printing when some style rules are used. However, I am not aware of any changes for the worse in Fx4 (at least, until now I wasn't aware of any).
    A couple of thoughts:
    (1) Is it possible you were using an add-on in Fx3.6 that fixed this problem, but the add-on was disabled during the upgrade because it wasn't compatible? (Sometimes that can be fixed with a little hack.)
    (2) Are there any obvious settings differences that could be affecting printing, such as fonts, margins, or shrink-to-fit/percentage?
    (3) Does the workaround of selecting the entire page (Ctrl+a) and then choosing Selection under Print range in the Print dialog work? Unfortunately, this can slice through lines and images, but it often works around problems with style rules.
    In the interest of saving paper, it often is useful to experiment with a PDF printer driver. If you don't have pdfFactory, you can install a trial version for testing: it lets you view the results without first having to save the file. (If you save with the trial version, there is a footer to that effect.)
    (4) Is it an HTML5 problem? You can toggle the HTML5 parser off, but this is a global setting, not site-specific. If you are familiar with about:config, filter on html5 and double click '''html5.parser.enable''' to toggle its value from true to false. This helps for some sites, but has no effect on others.

  • I am trying to print all the PDF pages in a range of 5 pages but can only print one page at a time . . . It will print the current page, but not all or pages 1-5.  Can this be overcome?

    I am trying to print all the PDF pages in a range of 5 pages but can only print one page at a time . . . It will print the current page only, but not all or pages 1-5.  I need to go to the next subsequent page and command to print current page; continuing with this procedure until all pages are printed one at a time. Can this be overcome?

    You can use printPages(1, 5), however I need to know how you print current page.

  • I recently purchased songs from itunes via my pc and I dont know how to get them onto my iphone? When I click the sync button it says I will lose all the music currently on my iphone.. Help :(

    I recently purchased songs from itunes via my pc and I dont know how to get them onto my iphone? When I click the sync button it says I will lose all the music currently on my iphone.. Help

    If you're syncing with a different iTunes library than the one you previously synced with, then there is no way around it. You're gonna loose the old data. The only way round it would be to make sure that all the music files on your iPhone is also in your iTunes library. If you still have access to the computer with the old library, you could copy the files on to an external harddrive, and then import them into your new iTunes library.
    If it is in fact the same library, then the music currently on your iphone, is also in your itunes library. Just make sure that the artists/albums/playlists, or whatever you sync contains these tracks, that you allready have on your phone and don't want deleted. What i do is, i create a playlist specifically for my iPhone, and i set it up to only sync with this playlist. Whenever i hear a track from my iTunes library or buy a new track that i want on my phone, i just drag it to this playlist and next time i synchronize, it's there without deleting anything else.

  • My hp 100 mobile printer will only print one page then quits. will not print all of the pages.

    my hp 100 mobile printer will only print one page then quits. will not print all of the pages.  i have rebooted, new install, and reset. still the same thing. when i look it shows that it is printing but there is nothing happing. i use this with my lap top.

    Hello colt1,
    Are you using Bluetooth or USB cable to connect to the printer?  Did you install from the disc, or from the online program?  When it sits there and doesn't print, does it eventually give error messages, lights flashing, etc.? 
    Thanks,
    ↙-----------How do I give Kudos?| How do I mark a post as Solved? ----------------↓

  • Pixma was working just fine until I replaced 3 of the ink cartidges. Now it only prints blank pages

    Pixma was working just fine until I replaced 3 of the ink cartidges.  Now it only prints blank pages.  It does the same thing from my computer as from the printer itself.  Also passes the device maintenance tests, including all the colors and the alignment.  Does anyone have any ideas?
    Thanks

    Hi, Patty8888!
    So that the Community can help you better, we will need to know exactly which printer model you're using, which operating system is running on your computer, how your printer is connected to your computer. That, and any other details you'd like to give will help the Community better understand your issue!
    If this is a time-sensitive matter, our US-based technical support team is ready to help by phone at 1-800-OK-CANON (1-800-652-2666) weekdays between 10 AM and 10 PM ET (7 AM to 7 PM PT).
    Thanks and have a great day!

  • Brand new laserjet pro 400 only prints about 1" down the left side of the page

    I just unboxed a brand new Laserjet Pro 400 for a teacher, and upon running a test print, the printer only prints about 1" of the text down the left side of the page.  The text fades to white, and the entire remainder of the page is blank!  I re-seated the toner cardtridges, ran the cleaning program, and am still getting the same results!  Any suggestions?  A scan of the page is attached.  It came out this way after each solution that I tried!

    To get your issue more exposure I would suggest posting it in the commercial forums since this is a commercial product. You can do this at Commercial Forums.
    I hope this helps!
    R a i n b o w 7000I work on behalf of HP
    Click the “Kudos Thumbs Up" at the bottom of this post to say
    “Thanks” for helping!
    Click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution!

  • My mini died. bought one used from a friend... all of my songs and books are on my iPhone, and I cant figure out how to get them onto this new computer. this is frustrating. the things i really want are purchases I've made from itunes store... help

    My mini died. bought one used from a friend... all of my songs and books are on my iPhone, and I cant figure out how to get them onto this new computer. this is frustrating. the things i really want are purchases I've made from itunes store... help
    !!!!!

    Hey kevyg3,
    I was able to find an article that I believe will help you move your iTunes purchases from your iPhone over to your new computer:
    iTunes Store: Transferring purchases from your iOS device or iPod to a computer
    http://support.apple.com/kb/HT1848
    Hope this helps,
    David

Maybe you are looking for