rossbritton26
New Member
- Joined
- Jul 28, 2011
- Messages
- 33
Hi,
i have a cell reference (cellref) which is a string from an input box,
what i want to do is to split the cell reference into the column reference and the row reference. The following code works until the row ref goes above 9 and the column ref goes beyond Z. Any ideas??
i have a cell reference (cellref) which is a string from an input box,
what i want to do is to split the cell reference into the column reference and the row reference. The following code works until the row ref goes above 9 and the column ref goes beyond Z. Any ideas??
Code:
Col = Format(Left$(cellref, 1))
Row = Format(Right$(cellref, 1))