Goto Function

PH

New Member
Joined
Oct 27, 2002
Messages
3
I need make Input sheet..,
example :
in cell : b6 ( 1 until 31)

if input 1 automatically goto ab1
if input 2 automatically goto cd 1
......

How to make this ??
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
Right click the sheet tab that you want this to happen on and paste this code into the sheet module:

Private Sub Worksheet_Change(ByVal Target As Range)
If Worksheets("Sheet1").Range("A1").Value = 1 Then
Worksheets("Sheet1").Range("Ab1").Select
End If
End Sub

Change the ranges as needed and add additional tests as needed. Note you can only have one "Change Event" so add all your code to the one Sub! Hope this helps. JSW
 
Upvote 0
Thanks,

but i had problem .. because everytime change another cell after enter they will go to last cell AB1

how to fix this .. only if change in A1 will go to AB1
 
Upvote 0

Forum statistics

Threads
1,214,908
Messages
6,122,187
Members
449,072
Latest member
DW Draft

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