Finding a column name

S

Squirrel-Salad

Gooday all,

I currently have some names in various columns but on the same same row. I
have at the moment been able to search for a name in the column. But as I
dont know the actual cell how can I find the cell name?

example names are in D12, E12 .... P12 they are all on row 12 but I dont
know the column. the search looks at each column untill it finds a match,
if it gets to an empty cell on row 12 the search ends, if it find the cell
I need to delete the column. Taking into acount that P12 may go as far as
FF12!! I dont actualy know.

Does this make sense?
 
G

Gary Keramidas

see if this example will get you started:

Sub Find_Item()
Dim rngfound As Range
Dim lastrow As Long
Dim ws As Worksheet
Set ws = Worksheets("Items")
lastrow = ws.Cells(Rows.Count, "A").End(xlUp).Row

itmToFind = "Test"

With ws.Range("A12:ff12")
Set rngfound = .Find(itmToFind, LookIn:=xlValues, lookat:=xlWhole)
End With
If Not rngfound Is Nothing Then
rngfound.EntireColumn.Delete
End If
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top