ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   Mover Cell to another place in worksheet (https://www.excelbanter.com/excel-worksheet-functions/211502-mover-cell-another-place-worksheet.html)

Dylan @ UAFC[_2_]

Mover Cell to another place in worksheet
 
I would like a formula that if I were to select
cell A1 it would automatically take me to
say b109
Please advise

Shane Devenshire[_2_]

Mover Cell to another place in worksheet
 
Hi,

You will need VBA, formulas can not do that.

Here is an example of event code using the Intersect function:

Private Sub Worksheet_Change(ByVal Target As Range)
Dim Isect As Range
Set Isect = Application.Intersect(Target, [A1])
If Not Isect Is Nothing Then
Range("B109").Select
End If
End Sub

Here a number is being entered into A1 and then it is added to the entry in
B1 and then A1 is cleared.

1. To add this code to your file, press Alt+F11,
2. In the VBAProject window, top left side, find your sheet name under your
file name and double click it.
3. Paste in or type the code above.

If this helps, please click the Yes button

Cheers,
Shane Devenshire

"Dylan @ UAFC" wrote:

I would like a formula that if I were to select
cell A1 it would automatically take me to
say b109
Please advise


Max

Mover Cell to another place in worksheet
 
Another play, perhaps simpler, is to insert a hyperlink

Select cell A1
Click Insert Hyperlink
Link to: Place in This Document
Enter the cell ref in "Type the cell ref" box: B109
Amend "Text to display" to taste
Click OK
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:20,500 Files:365 Subscribers:65
xdemechanik
---
"Dylan @ UAFC" wrote:
I would like a formula that if I were to select
cell A1 it would automatically take me to
say b109
Please advise


Dylan @ UAFC[_2_]

Mover Cell to another place in worksheet
 
Perfect,

"Max" wrote:

Another play, perhaps simpler, is to insert a hyperlink

Select cell A1
Click Insert Hyperlink
Link to: Place in This Document
Enter the cell ref in "Type the cell ref" box: B109
Amend "Text to display" to taste
Click OK
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:20,500 Files:365 Subscribers:65
xdemechanik
---
"Dylan @ UAFC" wrote:
I would like a formula that if I were to select
cell A1 it would automatically take me to
say b109
Please advise


Max

Mover Cell to another place in worksheet
 
Welcome, glad to hear.
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:20,500 Files:365 Subscribers:65
xdemechanik
---
"Dylan @ UAFC" wrote in message
...
Perfect





All times are GMT +1. The time now is 02:28 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com