Worksheet Change from other sheet (With Data Validation)

samst

Board Regular
Joined
Feb 12, 2003
Messages
71
Hi All

I've been looking through out the board but haven't been able to find an answer so I'm posting a new question to an old problem.

On Sheet1 I have two Ranges (Range1 in column A and Range2 in Column i)

On Sheet2 I have a validation list in cell c1 that pulls data from Range1


When a selection in c1 is made I'd like cell f4 to pull the corresponding entry from Range2 .

Here's what I have so far That doesn't work

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$C$1" Then
Range("F4").Activate
ActiveCell = Cells(Target.Offset(0, 9))
End If

End Sub

Any help would be greatly appreciated.
Thanks
s
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.

Forum statistics

Threads
1,214,376
Messages
6,119,179
Members
448,871
Latest member
hengshankouniuniu

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