Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Is there a way to go to a cell address written in another cell.
Example: In cell E13 I have the text "H12". I want the macro to look at cell E13, read the value H12 and goto cell H12. Thanks for your help in advance. Michael |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi
Try this Dim var As String var = Range("E13").Value Application.Goto Range(var) -- Regards Ron de Bruin http://www.rondebruin.nl "mburkett" wrote in message oups.com... Is there a way to go to a cell address written in another cell. Example: In cell E13 I have the text "H12". I want the macro to look at cell E13, read the value H12 and goto cell H12. Thanks for your help in advance. Michael |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
bold text of referenced cell show in formula cell | Excel Worksheet Functions | |||
Return Results of a cell based on cell referenced in a cell | Excel Worksheet Functions | |||
Change Text Color in one cell based upon entry in referenced cell | Excel Discussion (Misc queries) | |||
HOW IS COLUMN "K" REFERENCED ON THE CURRENT ROW IN THE GOTO COMMAN | Excel Discussion (Misc queries) | |||
goto a particular cell | Excel Programming |