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. I would like to show the x and y of the cell at range("A1") e.g the cursor stops at C3, then range("A1") shows ---- 3,3 or, the cursor stops at B2, then range("A1") shows ---- 2,2 How to write in macro for this effect? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Check your earlier post.
Wu wrote: I have written a macro that the cursor will stop at uncertain cell everytime finally. I would like to show the x and y of the cell at range("A1") e.g the cursor stops at C3, then range("A1") shows ---- 3,3 or, the cursor stops at B2, then range("A1") shows ---- 2,2 How to write in macro for this effect? -- Dave Peterson |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
However you are running your macro, i think if you just add at the end
of it: Range("A1").Value = ActiveCell.Address(false,false) ...the (false,false) is for Row absoulte, so you'll have to set it as either true or false, depending on if you want to show the dollar signs in cell A1 or not. I think false false will display $B$2 for example. true true is B2. but you'll have to check. hope this helps dk |
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 |