This answer only applies if you are trying to code a macro. It does not apply to a situation where you would want to use a user defined function to display the active row number on the worksheet (as in "=ActiveRowFunction()" as the formula in a cell).
Try searching the VBA help with the search term, ActiveCell. ActiveCell acts like any other Range object. To learn more about what properies a cell can have, try adding a watch to a range object like
Code:
Range("A1")
You'd be surprized at all the data a cell actually has...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.