I am new to Excel macros. I have some columns with headings scattered in many sheets. I would like to type a heading in some column which has the cursor and have the column with that heading copy-pasted to the column with the cursor.

Is it possible to do this by recording a macro? How? If not, how do I do it programmatically?

link|improve this question

76% accept rate
Are you looking for auto complete the new heading? Or to copy all the values in that particular column to new column ? – Dheer Dec 30 '08 at 11:13
Both solutions would be acceptable. Auto-complete even seems better; I didn't know it was even an option. – namin Dec 30 '08 at 11:30
feedback

2 Answers

up vote 1 down vote accepted

Here are a few notes on code to copy a found column.

Dim ws As Worksheet
Dim r As Range
Dim CopyTo As String

'You must run the code from a suitable active cell '
strFind = ActiveCell.Value
'Assumes the column data will be written into the next row down '
CopyTo = ActiveCell.Offset(1, 0).Address

'Look at each worksheet'
For Each ws In ActiveWorkbook.Worksheets
    'Skip the active worksheet '
    If ws.Name <> ActiveSheet.Name Then
        'Get the last cell and row'
        lc = ws.Cells.SpecialCells(xlCellTypeLastCell).Column
        lr = ws.Cells.SpecialCells(xlCellTypeLastCell).Row

        'Use the first row for search range '
        Set r = ws.Range(ws.Cells(1, 1), ws.Cells(1, lc))

        'Find the first whole cell to match the active cell '
        Set f = r.Find(strFind, , , xlWhole)
        'If it is found ... '
        If Not f Is Nothing Then
           'Copy the whole column to the copy position '
           ws.Range(ws.Cells(2, f.Column), _
           ws.Cells(lr, f.Column)).Copy (ActiveSheet.Range(CopyTo))
        End If
    End If
Next
link|improve this answer
Thanks a lot for your time. Unfortunately, I get this error on the copying: Run-time error '1004': Copy method of Range class failed. – namin Dec 31 '08 at 13:46
Oops. I made some corrections. :) – Remou Dec 31 '08 at 17:55
It works now. Thanks a lot. :) – namin Jan 1 '09 at 10:21
feedback

Does the heading appear many times across the different sheets? If not, then I would suggest using a simple if statement

if ('columnheading' = 'column to check','line1ref', 'line1refin other sheet')

You will have to check each column to do this.

Are there many sheets, are the columns always in the same position?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.