An empty row in a table

gjoisa

Active Member
Licensed User
Longtime User
In my application I have a table which contains something like 250 rows . I want an empty row after every 9 rows . But it is possible to add a row witout any string only once in a table . What to do ?
 

copiloto

Member
Licensed User
Longtime User
Wait this help you

a=int(table1.RowCount / 9)

b=rnd(0,a)

c=b*9

table1.cell("column name",c)=""

I think this is what you look for..

bye.
 
Top