Give this alternative a try. It labels all non-empty cells all the way
to the last cell non-empty cell in the column:

    Dim aCol As Variant
    Dim bCol As Variant
    bCol = ActiveSheet.UsedRange.Columns("A")
    ReDim aCol(1 To UBound(bCol, 1), 1 To 1)
    Dim i As Long
    i = 1
    Dim irow As Long
    For irow = 1 To UBound(bCol, 1)
        If bCol(irow, 1) <> "" Then
            aCol(irow, 1) = i
            i = i + 1
        Else
            aCol(irow, 1) = ""
        End If
    Next irow
    Columns("A:A").Insert Shift:=xlToRight
    Range(Cells(1, 1), Cells(UBound(bCol, 1), 1)) = aCol

It is of course a little less speedy than the routine proposed by
Dave.

On Nov 21, 12:00 am, Dave Bonallack <davebonall...@hotmail.com> wrote:
> Hi Mike,
> Try this code. It may be quicker. But it won't go to the end of Col B if Col 
> B has any blank cells. Let me know if this is a problem.
>
> Sub NumColA()
>     Columns("A:A").Insert Shift:=xlToRight
>     Range("A1") = 1: Range("A2") = 2
>     Range("A1:A2").AutoFill Destination:=Range(Cells(1, 1), 
> Cells(Range("B1").End(xlDown).Row, 1)), Type:=xlFillDefault
> End Sub
>
> Regards - Dave.
>
>
>
>
>
> > Date: Fri, 20 Nov 2009 16:28:50 -0800
> > Subject: $$Excel-Macros$$ Add a column of matching numbers
> > From: mwillia...@socal.rr.com
> > To: excel-macros@googlegroups.com
>
> > What I need to do is insert a column at A:A
> > if there is data in B1 number A:1 as 1
> > down one to B2 number A:2 as 2
> > and so on to the end of data in column B
>
> > start with this
>
> > Col A
> > aaa
> > bbb
> > ccc
>
> > end with this
>
> > Col A  Col B
> > 1.........aaa
> > 2.........bbb
> > 3.........ccc
> > (dots shown here as spacers)
>
> > The code I wrote below works perfectly, but it is SLOW
> > Does anyone have any suuggestions to speed it up?
> > (10,000+ rows)
>
> > Columns("A:A").Select
> > Selection.Insert Shift:=xlToRight
>
> > myrow = 1
>
> > Do Until IsEmpty(Range("B" & myrow))
>
> >     Range("A" & myrow).Select
> >     ActiveCell.FormulaR1C1 = myrow
>
> >     myrow = myrow + 1
> > Loop
>
> > --
> > ---------------------------------------------------------------------------­-------
> > Some important links for excel users:
> > 1. Excel and VBA Tutorials(Video and Text), Free add-ins downloads 
> > athttp://www.excelitems.com
> > 2. Excel tutorials athttp://www.excel-macros.blogspot.com
> > 3. Learn VBA Macros athttp://www.vbamacros.blogspot.com
> > 4. Excel Tips and Tricks athttp://exceldailytip.blogspot.com
>
> > To post to this group, send email to excel-macros@googlegroups.com
> > If you find any spam message in the group, please send an email to:
> > Ayush Jain  @ jainayus...@gmail.com or
> > Ashish Jain @ 26may.1...@gmail.com
> > <><><><><><><><><><><><><><><><><><><><><><>
> > HELP US GROW !!
>
> > We reach over 6,500 subscribers worldwide and receive many nice notes about 
> > the learning and support from the group. Our goal is to have 10,000 
> > subscribers by the end of 2009. Let friends and co-workers know they can 
> > subscribe to group athttp://groups.google.com/group/excel-macros/subscribe
>
> _________________________________________________________________
> Want to know what your boss is paid? Check out The Great Australian Pay Check 
> nowhttp://clk.atdmt.com/NMN/go/157639755/direct/01/- Hide quoted text -
>
> - Show quoted text -

-- 
----------------------------------------------------------------------------------
Some important links for excel users:
1. Excel and VBA Tutorials(Video and Text), Free add-ins downloads at 
http://www.excelitems.com
2. Excel tutorials at http://www.excel-macros.blogspot.com
3. Learn VBA Macros at http://www.vbamacros.blogspot.com
4. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 

To post to this group, send email to excel-macros@googlegroups.com
If you find any spam message in the group, please send an email to:
Ayush Jain  @ jainayus...@gmail.com or
Ashish Jain @ 26may.1...@gmail.com
<><><><><><><><><><><><><><><><><><><><><><>
HELP US GROW !!

We reach over 6,500 subscribers worldwide and receive many nice notes about the 
learning and support from the group. Our goal is to have 10,000 subscribers by 
the end of 2009. Let friends and co-workers know they can subscribe to group at 
http://groups.google.com/group/excel-macros/subscribe

Reply via email to