Thread: Macro Help...
View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
Tom Ogilvy Tom Ogilvy is offline
external usenet poster
 
Posts: 27,285
Default Macro Help...

He meant if you add 3 rows for each existing data row, you will have 4 x
16384 = 65536 rows

--
Regards,
Tom Ogilvy

"Don Guillett" wrote in message
...

go over 16384 rows, that is more rows than allowed on an excel sheet

65336 rows on later versions. Time to upgrade

--
Don Guillett
SalesAid Software

"Tim Coddington" wrote in message
...
Here is a stab at it ...
Sub Macro2()
[A1].Select 'This would be the first cell in your ItemNos. column
Do While ActiveCell.Value < ""
Range(ActiveCell.Offset(1, 0).Address & ":" &

ActiveCell.Offset(3,
0).Address).EntireRow.Insert
ActiveCell.Offset(1, 0) = "A"
ActiveCell.Offset(2, 0) = "F"
ActiveCell.Offset(3, 0) = "V"
ActiveCell.Offset(4, 0).Select
Loop
End Sub

Now if you are really getting 15000 rows, what about 16000? If you
go over 16384 rows, that is more rows than allowed on an excel sheet.

-Tim

"sameer27p " wrote in message
...
I had another question.I have a column named ItemNos..this column
contains item numbers.Now,after every item number ,i need to insert
three rows containing the text value 'Actual','Forecast' AND

'Variance'
in the same column..this shud however go until the range of the item
nos..since sometimes the report spools 15 rows while at other times it
may spool 15000 rows...

Item Number
A
F
V
Item Number
A
F
V