ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   In excel, can I format a cell to automatically take the curser to. (https://www.excelbanter.com/excel-worksheet-functions/9223-excel-can-i-format-cell-automatically-take-curser.html)

1google

In excel, can I format a cell to automatically take the curser to.
 
Can I format a cell to have the curser automatically go to a different
specified cell?

Peo Sjoblom

No, you cannot format anything to go anywhere. Only way of doing this would
be to use an event macro

Regards,

Peo Sjoblom

"1google" wrote:

Can I format a cell to have the curser automatically go to a different
specified cell?


Gord Dibben

Which could look like this........

''moves from C2 through E5 at entry
Private Sub Worksheet_Change(ByVal Target As Range)
Select Case Target.Address
Case "$C$2"
Range("C5").Select
Case "$C$5"
Range("E2").Select
Case "$E$2"
Range("E5").Select
End Select
End Sub


Gord Dibben Excel MVP

On Fri, 14 Jan 2005 06:19:02 -0800, "Peo Sjoblom"
wrote:

No, you cannot format anything to go anywhere. Only way of doing this would
be to use an event macro

Regards,

Peo Sjoblom

"1google" wrote:

Can I format a cell to have the curser automatically go to a different
specified cell?




All times are GMT +1. The time now is 05:17 AM.

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