I have 2 columns of data. first column is a string and the second is numbers. i can sometimes have upwards of 3000 rows. However, my final output will be excel files and i can only have 900 lines per file. So every i need to insert a new row at every 900th row and find the total of all the numbers that came before it. Also, the total number of rows i will have will never be an exact multiple of 900. So I'm wondering if there is a way to insert a new row every 900 and dynamically insert a row at the very end of my data?