![]() |
Inserting Rows
I have a spreadsheet that I need to insert a blank row under a number everytime it changes. The column may have 500 rows and the first twenty or so may all be the number 10 for example, the next five might be the number 8, I need a row between the last number ten and the first number eight. This may be repeated many times through the spreadsheet. Any help would be appreciated, I am not really up to speed on Macros and such but have a good handle on formula's, so if the problem is fixed using macro's please use as plain english as you can. Thanks Stu -- StuNVA ------------------------------------------------------------------------ StuNVA's Profile: http://www.excelforum.com/member.php...o&userid=25540 View this thread: http://www.excelforum.com/showthread...hreadid=389777 |
If your numbers are in column A
and if the numbers are truely equal and if there are no blanks initially try sub blnkentery() nr=Application.WorksheetFunction.counta("A:A") for r = nr to 2 step -1 cells(nr,1.select if cells(nr,1) < cells(nr-1,1) then Selection.EntireRow.Insert next r end sub "StuNVA" wrote: I have a spreadsheet that I need to insert a blank row under a number everytime it changes. The column may have 500 rows and the first twenty or so may all be the number 10 for example, the next five might be the number 8, I need a row between the last number ten and the first number eight. This may be repeated many times through the spreadsheet. Any help would be appreciated, I am not really up to speed on Macros and such but have a good handle on formula's, so if the problem is fixed using macro's please use as plain english as you can. Thanks Stu -- StuNVA ------------------------------------------------------------------------ StuNVA's Profile: http://www.excelforum.com/member.php...o&userid=25540 View this thread: http://www.excelforum.com/showthread...hreadid=389777 |
All times are GMT +1. The time now is 05:40 AM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com