RockandGrohl
Well-known Member
- Joined
- Aug 1, 2018
- Messages
- 801
- Office Version
- 365
- Platform
- Windows
Hi all,
Have timestamps in column O that can either be blank or non-blank, I'm looking to find the last time stamp in column O
If I'm on row 44 in column A, and the last timestamp is on row 41 in column O, how do I say to excel:
The above errors out because, let's face it, it's a mis-mash of incompatible code.
I want to find the result in column O of the last timestamp above the active row.
Thanks!
Have timestamps in column O that can either be blank or non-blank, I'm looking to find the last time stamp in column O
If I'm on row 44 in column A, and the last timestamp is on row 41 in column O, how do I say to excel:
Code:
LastTime = Cells(ActiveCell.Row, "O").Selection.End(xlUp).Value
The above errors out because, let's face it, it's a mis-mash of incompatible code.
I want to find the result in column O of the last timestamp above the active row.
Thanks!