VBA: Selecting a cell using a relative column

VBA_Debutant

New Member
Joined
Aug 5, 2011
Messages
6
Hi,

I want to use a macro (with Excel VBA 2003) that
1- finds the cell containing a specific value
2- goes to the cell on line 7 of the same column as the found cell

I have tried to find that answer online but could not figure it out.

The start of my macro looks like that:

Dim ValT as String
ValT = Sheets("Sheet1").Range("R3").Value
Dim VarFind As Variant

Set VarFind = Cells.Find(What:=ValT, LookIn:=xlValues, LookAt:=xlWhole)
If VarFind Is Nothing Then
MsgBox ValT & "is not in here"
Exit Sub
Else
Cells.Find(What:=ValT, LookIn:=xlValues, LookAt:=xlWhole).Activate
End If

... and I do not know how to use the column defined by the ActiveCell to go to the Cell on line 7 of ActiveCell's Column. Any suggestions?

Thank you very much for your help!
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
Code:
    Dim ValT   As String
    ValT = Sheets("Sheet1").Range("R3").Value
    Dim VarFind As Range

    Set VarFind = Cells.Find(What:=ValT, LookIn:=xlValues, LookAt:=xlWhole)
    If VarFind Is Nothing Then
        MsgBox ValT & "is not in here"
        Exit Sub
    Else
[COLOR="Red"]        Cells(7, VarFind.Column).Activate[/COLOR]
    End If
 
Upvote 0

Forum statistics

Threads
1,216,100
Messages
6,128,830
Members
449,471
Latest member
lachbee

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top