MikeC14081972
Programmer
I'm using the ASCII value of characters to navigate an excel spreadsheet i.e.
My problem is I need to merge a number of cells on a given row dependant on data in another sheet.
I'm fine for columns A to Z but the problem I'm having is how to reference a value for Column AA as ASCII only has values for individual characters.
Any Ideas?????
Code:
' i is a long that relates to row number
.ActiveSheet.Range(chr(65) & i).select
My problem is I need to merge a number of cells on a given row dependant on data in another sheet.
I'm fine for columns A to Z but the problem I'm having is how to reference a value for Column AA as ASCII only has values for individual characters.
Any Ideas?????