gjoisa Active Member Licensed User Longtime User Aug 5, 2009 #1 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 ?
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 ?
A Ariel_Z Active Member Licensed User Aug 5, 2009 #2 Did you try to add blank spaces( " " ) or anything like this?
C copiloto Member Licensed User Longtime User Aug 5, 2009 #3 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.
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.