![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
I am sorry about what looks like multiple posts! I forgot to include two other groups when I first posted and then mistakenly posted to my previous post when I tried to repost. I need help on how to create blank lines on an invoice report. If there are only a few line items, I need to create blank lines so that Subtotal, Shipping, Sales Tax and Grand Total will always be at the bottom of the page. Also, if there are many line items that carry down to the bottom of the page or over to the next page, I need to have at least one line item on the second page and Subtotal, Shipping, Sales Tax and Grand Total immediately under the last line item. Thanks for your help! Cassandra |
#3
| |||
| |||
|
|
Cassandra wrote: I am sorry about what looks like multiple posts! I forgot to include two other groups when I first posted and then mistakenly posted to my previous post when I tried to repost. I need help on how to create blank lines on an invoice report. If there are only a few line items, I need to create blank lines so that Subtotal, Shipping, Sales Tax and Grand Total will always be at the bottom of the page. Also, if there are many line items that carry down to the bottom of the page or over to the next page, I need to have at least one line item on the second page and Subtotal, Shipping, Sales Tax and Grand Total immediately under the last line item. Thanks for your help! Cassandra I would check out a couple of help topics...the KeepTogether property and the NewRowOrCol property. You will have to experiment with them to see if you can use them in your report. The next topic to review is the MoveLayout, NextReocrd, PrintSection property. With some programming, a couple of variables judicially used, and you should be able to do what you want. If you study the TruthTable for this property in help, you can really pack some power into a report. It isun't used ofter but it is a handy property. Ex: If lngCnt > 20 and lngCnt < 55 then ;print a blank line Me.MoveLayout = True Me.nextRecord = False Me.PrintSection = False lngCnt = lngCnt + 1 endif |
![]() |
| Thread Tools | |
| Display Modes | |
| |