Add blank rows? / Print control N times?
Posted: Fri Jan 30, 2009 12:22 am
Is it possible to add blank rows or print certain control N times ?
what i would like to achieve is, add N blank rows (where N is a parameter)
in the bottom of the result set
what i would like to achieve is, add N blank rows (where N is a parameter)
in the bottom of the result set
Code: Select all
N = 3;
Code: Select all
Sequence ProdID Name
1 PROD111 Product Name 1
2 PROD222 Product Name 2
3 PROD333 Product Name 3
4 ----------- ------------------
5 ----------- ------------------
6 ----------- ------------------
Code: Select all
Then N blank rows is printed in the bottom
Thanks for the helpIs this possible?