Chris__T
Posts: 339
|
| Posted: 03/07/2007, 7:44 AM |
|
I'd like to be able to print blank rows (after the data) in a report, so inspectors have a place to jot down notes.
More ambitious: I'd like to base the number of blank rows on the amount of data that is being shown in the report. Example: if there are 10 rows of data, have 8 rows of blank rows. 15 rows of data, 5 blank rows, etc...
Any thoughts?
|
 |
 |
mhope
Posts: 37
|
| Posted: 03/13/2007, 2:15 PM |
|
Insert a label at the bottom of your grid set to HTML then the following code would do:
If Grid.RowNumber > 10 then
Grid.Label.Value "Insert html table for 10 rows"
ElseIf Grid.RowNumber > 15 then
Grid.Label.Value "Insert html table for 15 rows"
ect....
Hope this helps
|
 |
 |
|