Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have written a macro that the cursor will stop at uncertain cell everytime
finally. when the cursor stop, I would like to show the x and y of the cell at range("A1") For example, after running the marco, the cursor stop at range("C3") I want that in range("A1") will show -------- 3,3 if cursor stops at range("B2"), the range("A1") will show --------- 2,2 |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Is that row,column?
If yes, you could use: dim myCell as range .... with activesheet set mycell = .cells(33, 11) 'however your macro stops???? with .range("a1") .numberformat = "@" 'text .value = mycell.row & "," & mycell.column end with end with Wu wrote: I have written a macro that the cursor will stop at uncertain cell everytime finally. when the cursor stop, I would like to show the x and y of the cell at range("A1") For example, after running the marco, the cursor stop at range("C3") I want that in range("A1") will show -------- 3,3 if cursor stops at range("B2"), the range("A1") will show --------- 2,2 -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do i assign cell A1 to show the current cursor cell in Excel? | Excel Discussion (Misc queries) | |||
format cell to show leading zeros and make cell a three digit fiel | Excel Worksheet Functions | |||
In adjacent cell, show last date modified of target cell. | Excel Discussion (Misc queries) | |||
Formatting to show/not show "DUE" and "RECEIVED" in cell | New Users to Excel | |||
enter a time into a cell, have the cell show two times the entry | Excel Worksheet Functions |