Thread: Macro Help...
View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
Don Guillett[_4_] Don Guillett[_4_] is offline
external usenet poster
 
Posts: 2,337
Default Macro Help...


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