#1   Report Post  
ROLG
 
Posts: n/a
Default add cell


i have a long list all in one column. the data in the first fifteen (1
thrue 15) is related and must be kept in sequence. the first fifteen
cells repeats with changes in its data for the next fifteen (16 thrue
30) and also must be kept in sequence. this repeats over and over for a
list of about 4000 cells.
what i need to do is this: i need to insert an empty
cell betwwn each group of fifteen cells.-to seperate them. between
15 & 16, 30 & 31 etc without disturbing the continuity of each 15 cell
grouping..

thankyou so much.


--
ROLG
------------------------------------------------------------------------
ROLG's Profile: http://www.excelforum.com/member.php...o&userid=16066
View this thread: http://www.excelforum.com/showthread...hreadid=320559

  #2   Report Post  
Dave Peterson
 
Posts: n/a
Default

This worked ok for me:

Option Explicit
Sub testme()
Dim iCtr As Long
Dim LastRow As Long
Dim myRng As Range
With ActiveSheet
LastRow = .Cells.SpecialCells(xlCellTypeLastCell).Row
Set myRng = Nothing
For iCtr = 16 To LastRow Step 15
If myRng Is Nothing Then
Set myRng = .Cells(iCtr, "A")
Else
Set myRng = Union(.Cells(iCtr, "A"), myRng)
End If
Next iCtr
End With

If myRng Is Nothing Then
'do nothing
Else
myRng.EntireRow.Insert
End If
End Sub



ROLG wrote:

i have a long list all in one column. the data in the first fifteen (1
thrue 15) is related and must be kept in sequence. the first fifteen
cells repeats with changes in its data for the next fifteen (16 thrue
30) and also must be kept in sequence. this repeats over and over for a
list of about 4000 cells.
what i need to do is this: i need to insert an empty
cell betwwn each group of fifteen cells.-to seperate them. between
15 & 16, 30 & 31 etc without disturbing the continuity of each 15 cell
grouping..

thankyou so much.

--
ROLG
------------------------------------------------------------------------
ROLG's Profile: http://www.excelforum.com/member.php...o&userid=16066
View this thread: http://www.excelforum.com/showthread...hreadid=320559


--

Dave Peterson
  #3   Report Post  
ROLG
 
Posts: n/a
Default


thankyou for your very appreciated help.


--
ROLG
------------------------------------------------------------------------
ROLG's Profile: http://www.excelforum.com/member.php...o&userid=16066
View this thread: http://www.excelforum.com/showthread...hreadid=320559

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
can't move a named cell without breaking a hyperlink to that cell Snakeye Links and Linking in Excel 3 January 26th 05 11:57 PM
Display cell value on a chart. Andrew Constantinidis Charts and Charting in Excel 1 January 8th 05 04:36 AM
How do I set a cell to "Empty" so that it does not display in a ch Ian Charts and Charting in Excel 3 January 7th 05 01:12 AM
make a cell empty based on condition mpierre Charts and Charting in Excel 2 December 29th 04 01:01 PM
Transferring cell content between workbooks using cell references Kiwi Mike Excel Discussion (Misc queries) 2 November 27th 04 11:31 PM


All times are GMT +1. The time now is 02:59 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"