Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
(Looks at a box.)
I'm stuck. The code below reads the cell.address and I strip the "$" signs. Then I test for character length and create a range, IE, "A1" or "Z99" etc. I recently found myself using double alpha characters on one sheet, IE, "AA6". I am not seeing how I can get the propper information to continue creating a range I want. As an example, a particular worksheet has data from A1 thru AA6, I attempt to create a range from C5 thru AA7 with my current code but with the double alpha address I get a range that is the opposite of my target, C6 thru A5 (6 total cells when it should be 48 total cells from C5 thru AA6). As always, your help is appreciated! '====== 'Begin FindCellRange===================================== Dim x As Long, SRng As Range, Rcount As Long Dim sRange Dim sRow As String Dim sRow2 As String Set SRng = ActiveSheet.UsedRange Rcount = SRng.Rows.Count For x = Rcount + SRng.Row To 1 Step -1 If Application.CountA(SRng.Rows(x)) < 0 Then Exit For Next x 'MsgBox "First empty row is " & SRng.Rows(x + 1).Address(0, 0) 'for testing value sRow = Right(SRng.Rows(x + 1).Address(0, 0), 3) sRow = Replace(sRow, ":", "") If Len(sRow) = "2" Then sRow2 = Left(sRow, 1) 'MsgBox "Len(sRow) = ""2"" " & sRow2 'for testing Else 'double alpha characters fail, IE: address "AA7". 01.20.08 If Len(sRow) = "3" Then sRow2 = Left(sRow, 2) 'MsgBox "Len(sRow) = ""2"" IsNumeric " & sRow2 'for testing Else sRow2 = Left(sRow2, 1) 'MsgBox "Len(sRow) = ""3"" " & sRow2 'for testing End If End If 'End FindCellRange===================================== == '====== -- Regards VBA.Noob.Confused XP Pro Office 2007 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Alpha with numeric and numeric only numbers in a column | Excel Discussion (Misc queries) | |||
If statement for alpha numeric combo AND numeric only | Excel Discussion (Misc queries) | |||
Alphanumeric Sorting - numeric alpha numeric | Excel Worksheet Functions | |||
only extract numeric value from alpha numeric cell | Excel Discussion (Misc queries) | |||
The colums changed from alpha to numeric how do you make it alpha | Excel Discussion (Misc queries) |