T
thread
Hi all,
is it posible to have a formula in excel that indicates the current
cell?
is it posible to have a formula in excel that indicates the current
cell?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Hi thank you for thr quick answer but my issue is that i want to have
a formula that is not a vba code
is it posible
i want the formula inside of the cell to indicate what row is it
JE McGimpsey :
One could write a UDF, but it wouldn't be accurate most of the time,
since changing the active cell doesn't cause a recalculation.A better way to indicate the active cell would be to use an event macro.
Put this in your worksheet code module:
If you can't use vba code, then a different newsgroup than .programming
would probably have been appropriate.
To get just the row of the active cell, you can use
=ROW(INDIRECT(CELL("address")))
but you'll have to recalculate (F9) in order to have the formula update.
I normally wouldn't use CELL("address") because it will update to the
current active cell address, even if the active cell is on another
worksheet, but perhaps that's what you want.
thread said:Hi thank you for thr quick answer but my issue is that i want to have
a formula that is not a vba code
is it posible
i want the formula inside of the cell to indicate what row is itJE McGimpsey :
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.