I am having trouble figuring out how to delete rows based upon the index or row number.
I thought that I might try to get the row number and put it into a variable to use as my column numbers however, I can’t figure out how to list the column numbers veritically.
For example if my row numbers are 7, 8 12, 13, I can only get hte to list in an text file as
First of all, it is very dangerous to delete rows like that. Look, if you have 20 rows and you want to delete 7, 8, 12, 13 in for each row, if you delete 7th the 8th become 7th, 12th become 11th and 13th become 12th and so on. I prefer to delete rows in Excel/DT is descending order, in that case when You first remove 13th row other rows are at correct positions.
I attach corrected file, please check if it is what You want.