Home |
Search |
Today's Posts |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
sStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvw xyz"
sStr1 = Left(sStr,31) ? sStr ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwx yz ? sStr1 ABCDEFGHIJKLMNOPQRSTUVWXYZabcde -- Regards, Tom Ogilvy "ozcank " wrote in message ... Good thinking, I neglected that small factor. I have the following code, which selects the name of the cell: Private Sub getNames() Dim intRow As Integer, wsMain As Worksheet Dim strReadName As String Set wsMain = ActiveWorkbook.Worksheets("ufioverdue") intIdx = 0 intRow = 2 With wsMain Do strReadName = .Cells(intRow, 2) strNames(intIdx) = strReadName Do intRow = intRow + 1 Loop Until strReadName < .Cells(intRow, 2) intIdx = intIdx + 1 Loop While .Cells(intRow, 2) < "" End With intIdx = intIdx - 1 End Sub What would I have to alter so that it would only select the first 31 characters of a cell? ny ideas? Cheers --- Message posted from http://www.ExcelForum.com/ |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Searching quicker within long dropdownlist | Excel Worksheet Functions | |||
Searching long data base list. | Excel Worksheet Functions | |||
Searching Text that contains particular WORDS. | Excel Worksheet Functions | |||
Replace a long list of abbreviations with full words in Excel | Excel Worksheet Functions | |||
Searching for a words in a column from a list of words. | Excel Programming |