Closed Thread
Results 1 to 12 of 12

Limiting number of characters in a line

Hybrid View

  1. #1
    Registered User
    Join Date
    12-15-2008
    Location
    iop
    Posts
    10

    Limiting number of characters in a line

    I have a problem that I don't think is unique, but I haven't been able to find a resolution via the usual tools (Google, forums, etc).

    I work for a localizer of text heavy software. Our developers normally use a converter to pull text out of a file and insert it into the program. This text is normally input into an Excel file since it has to correspond with files/locations in the program.

    Since the space on the screen of the program is limited, we often face character limits when inputting text into Excel. Now, one cell might hold up to 255 characters, and I could restrict that with data validation, but within one cell I need to restrict each line (with a hard return) to 30 characters to fit on the screen.
    So for example I have a row of cells that look like:
    Hello, my name is Amejin. I like pizza, beer, and bowling.

    Which need to look like:
    Hello, my name is Amejin. I[HR]
    like pizza, beer, and bowling.

    Does anyone know a simple way to do this, or do I need to look for a macro and a VB expert?
    Last edited by Amejin; 12-21-2008 at 10:38 AM.

  2. #2
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689
    You'd need VBA, but it isn't difficult.

    A macro to do this on the entire worksheet?
    Entia non sunt multiplicanda sine necessitate

  3. #3
    Registered User
    Join Date
    12-15-2008
    Location
    iop
    Posts
    10
    Quote Originally Posted by shg View Post
    You'd need VBA, but it isn't difficult.

    A macro to do this on the entire worksheet?
    Thanks for the quick reply!!

    I don't need this to format the entire sheet, because I need to be able to specify the columns to be formatted. I suppose there must be a way to specify them as a range?

    If it helps, our formatting usually ends up something like this:
    |A column |B column |C column |...
    |ID #1   |English text|French Text|...
    |ID #2   |English text|French Text|...

    In this case, the French text will be output and needs to be formatted to a certain line length. The way we do this now (the BAD way) is by adding line breaks by hand. With up to several thousand cells in a file it can take an entire day to do one file, which is clearly not very productive.

  4. #4
    Registered User
    Join Date
    08-09-2004
    Posts
    14

    Characters unlimited

    This utility can import a text file into a textbox. You can edit your text then "export" it into a cell. The carriage return are accepted and although yo may not see the results directly, when you enter the cell, your formatting is shown. Great for large text files. Other options are provided for editing the text.
    http://www.geocities.com/excelmarksway/

    EasyText_Rev1.xls

  5. #5
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689
    This is pretty brutal -- it whacks the string every 30 characters. Select the cells of interest and run it.
    Sub x()
        Const iMax  As Long = 30
        Dim r       As Range
        Dim cell    As Range
        Dim sCAR    As String
        Dim sCDR    As String
    
        Set r = Intersect(Selection, ActiveSheet.UsedRange)
        
        For Each cell In r
            If Not (cell.HasFormula Or IsEmpty(cell.Value)) Then
                sCDR = cell.Text
                sCAR = vbNullString
                Do Until Len(sCDR) = 0
                    sCAR = sCAR & vbLf & Left(sCDR, 30)
                    sCDR = Mid(sCDR, iMax + 1)
                Loop
                cell.Value = Mid(sCAR, 2)
            End If
        Next cell
    End Sub
    It could be modified to break lines at word boundaries that occur prior to 30 characters ...

  6. #6
    Registered User
    Join Date
    12-15-2008
    Location
    iop
    Posts
    10
    Quote Originally Posted by shg View Post
    This is pretty brutal -- it whacks the string every 30 characters. Select the cells of interest and run it.
    {CODE}
    It could be modified to break lines at word boundaries that occur prior to 30 characters ...
    You're a stud!

    How would one modify that code to break lines at word boundaries? I'm already pretty lost in the code, but I'm guessing you'd have to work backwards from char #30 to the first space encountered and tell it to break there? I think I understand a bit of how it's supposed to work, but I just don't know the code to do it.
    Last edited by Amejin; 12-17-2008 at 11:42 PM.

  7. #7
    Registered User
    Join Date
    12-15-2008
    Location
    iop
    Posts
    10
    Could a mod please move this to the Programming section since this is going to require vba?
    Thanks. :D

  8. #8
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689
    Try this:
    Sub x()
        Const iMax  As Long = 30
        Dim r       As Range
        Dim cell    As Range
        Dim sCAR    As String
        Dim sCDR    As String
        Dim iPos    As Long
    
        Set r = Intersect(Selection, ActiveSheet.UsedRange)
        
        For Each cell In r
            If Not (cell.HasFormula Or IsEmpty(cell.Value)) Then
                sCDR = cell.Value
                sCAR = vbNullString
                Do Until Len(sCDR) = 0
                    iPos = InStrRev(Left(sCDR, iMax), " ")
                    If iPos = 0 Then iPos = InStr(sCDR, " ")
                    If iPos = 0 Then iPos = Len(sCDR)
                    sCAR = sCAR & vbLf & Left(sCDR, iPos)
                    sCDR = Mid(sCDR, iPos + 1)
                Loop
                cell.Value = Mid(sCAR, 2)
            End If
        Next cell
    End Sub

  9. #9
    Registered User
    Join Date
    12-15-2008
    Location
    iop
    Posts
    10
    Gee that works perfectly. Thanks for taking the time to address this. I think I can work out how you did that in the code too so it really helps me get a better handle on how it's processing.
    This site needs a reputation system so I can give you points for it.

  10. #10
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689
    Would you please mark the thread as Solved?

    How to mark a thread Solved
    Go to the first post
    Click edit
    Click Go Advanced
    Just below the word Title you will see a dropdown with the word No prefix.
    Change to Solved
    Click Save

  11. #11
    Registered User
    Join Date
    08-08-2012
    Location
    India
    MS-Off Ver
    Excel 2010
    Posts
    1

    Re: Limiting number of characters in a line

    When I am running it selecting the data in A1 the data remains unchanged .I have inserted the module and pasted the code and running from MAcros in the devloper"s tab pls advise

  12. #12
    Forum Moderator davesexcel's Avatar
    Join Date
    02-19-2006
    Location
    Regina
    MS-Off Ver
    MS 365
    Posts
    13,523

    Re: Limiting number of characters in a line

    Welcome to the Forum, unfortunately:

    Your post does not comply with Rule 2 of our Forum RULES. Don't post a question in the thread of another member -- start your own thread. If you feel it's particularly relevant, provide a link to the other thread. It makes sense to have a new thread for your question because a thread with numerous replies can be off putting & difficult to pick out relevant replies.

Closed Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1