RobbieC
Active Member
- Joined
- Dec 14, 2016
- Messages
- 376
- Office Version
- 2010
- Platform
- Windows
Hi there, I have a range A5:T10. I'm looking to find the address of the cell containing the last value.
I can find the last value in the range by using:
but how can I return which cell it is sitting in ie. L7
If you can point me in the right direction I'd be very happy
Thanks[/FONT][/COLOR]
I can find the last value in the range by using:
Code:
[COLOR=#333333][FONT=monospace]LastCellValue = Range("A5:T10").Find("*", , xlValues, xlWhole, , xlPrevious, , , False).Value
but how can I return which cell it is sitting in ie. L7
If you can point me in the right direction I'd be very happy
Thanks[/FONT][/COLOR]