+ Reply to Thread
Results 1 to 7 of 7

Parsing text with VBA

Hybrid View

  1. #1
    Registered User
    Join Date
    05-27-2010
    Location
    Your sister's house
    MS-Off Ver
    Excel 2007
    Posts
    27

    Parsing text with VBA

    I'm looking to write a macro that can take text from one cell and set a user defined number of spaces between it along with the text from another cell. I did it manually and used the macro recorder, but it doesn't really help
    ie

    Sub Parse_Text()
    '
    ' Parse_Text Macro
    '
    
    '
        Range("E4").Select
        ActiveCell.FormulaR1C1 = "=RC1&""        ""&RC2"
        Range("E5").Select
    End Sub
    As I want to be able to tell the macro how many spaces I want between the text.
    Eventually I will write the parsed text to a text file.

    Is there a way to do this with VBA? Can someone just point me in the right direction?
    Last edited by Carnifex930; 05-30-2010 at 02:19 PM.

  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

    Re: Parsing text with VBA

    Please take a few minutes to read the forum rules, and then edit your post to add CODE tags.
    Entia non sunt multiplicanda sine necessitate

  3. #3
    Forum Expert
    Join Date
    01-03-2006
    Location
    Waikato, New Zealand
    MS-Off Ver
    2010 @ work & 2007 @ home
    Posts
    2,243

    Re: Parsing text with VBA

    hi Carnifex,

    Yes, VBA can do this.
    Look up "WorksheetFunction.Rept Method" in the VBE Help files, and create a variable that is populated by an Input box to provide the second argument to the REPT method.

    btw, your existing code can be shortened to the below by removing the first ".select":
    Sub Parse_Text()
        Range("E4").FormulaR1C1 = "=RC1&""        ""&RC2"
        Range("E5").Select
    End Sub
    hth
    Rob
    Rob Brockett
    Kiwi in the UK
    Always learning & the best way to learn is to experience...

  4. #4
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: Parsing text with VBA

    Look up WorksheetFunction.Rept
    Or see VBE Help for the native String function.

  5. #5
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259

    Re: Parsing text with VBA

    Hello Carnifex930,

    Welcome to the Forum!

    I think this what you are after. This macro is a User Defined Function. It works similarly to a worksheet function. It will create the new text using the cells and the number of spaces you provide. Copy this code into a VBA module.

    NOTE: Changing the values of either cell will not change the UDF result. If you need this to happen, let me know.
    Function ParseText(ByVal Spaces_To_Add As Integer, Cell1, Cell2)
      ParseText = Cell1 & Space(Spaces_To_Add) & Cell2
      ActiveCell.Offset(1, 0).Select
    End Function


    UDF Example
       'In Cell E4 
        =ParseText(10,E1,E2)
    
       'Results - Displays E1 and E2 with 10 spaces in between


    Adding the Macro
    1. Copy the macro above pressing the keys CTRL+C
    2. Open your workbook
    3. Press the keys ALT+F11 to open the Visual Basic Editor
    4. Press the keys ALT+I to activate the Insert menu
    5. Press M to insert a Standard Module
    6. Paste the code by pressing the keys CTRL+V
    7. Make any custom changes to the macro if needed at this time.
    8. Save the Macro by pressing the keys CTRL+S
    9. Press the keys ALT+Q to exit the Editor, and return to Excel.
    Sincerely,
    Leith Ross

    Remember To Do the Following....

    1. Use code tags. Place [CODE] before the first line of code and [/CODE] after the last line of code.
    2. Thank those who have helped you by clicking the Star below the post.
    3. Please mark your post [SOLVED] if it has been answered satisfactorily.


    Old Scottish Proverb...
    Luathaid gu deanamh maille! (Rushing causes delays!)

  6. #6
    Registered User
    Join Date
    05-27-2010
    Location
    Your sister's house
    MS-Off Ver
    Excel 2007
    Posts
    27

    Re: Parsing text with VBA

    Thanks for all the help. Maybe I can get just a little more advice.

    The function that Leith posted:
    Function ParseText(ByVal Spaces_To_Add As Integer, Cell1, Cell2)
      ParseText = Cell1 & Space(Spaces_To_Add) & Cell2
      ActiveCell.Offset(1, 0).Select
    End Function
    Does the trick. However, I'm looking to do this on a larger scale; for now I would like to assume just one row of data (text in each cell).

    Say we have 4 cells. Cell1, Cell2, Cell3, Cell4

    The program should be able to define a string variable,and store Cell1's text in it.
    Next a function will be used to take Cell2's text and the string variable(has cell1's text in it), which it will then parse it a number of (known) spaces and then store back into the string variable, the moves on to Cell3 take its text and parses it a number of spaces with the string variable (String Variable now has Cell1's text parsed corecctly with Cell2) and the stores it back into the String Variable.

    The end result is a string variable that Contains the text from Cell's 1,2,3 and 4 parsed correctly.

    Sorry I'm new to VBA, I can figure out all the loopin, I just need to adapt the above function to save into a string variable, not a cell, How do I do this?
    Last edited by Carnifex930; 05-30-2010 at 08:43 PM.

  7. #7
    Forum Expert
    Join Date
    01-03-2006
    Location
    Waikato, New Zealand
    MS-Off Ver
    2010 @ work & 2007 @ home
    Posts
    2,243

    Re: Parsing text with VBA

    hi Carnifex930

    You may have already solved this, but just in case you haven't...
    To use the function that Leith posted you can call it from another macro to define a string variable by putting it on the right of the equals sign in your code, for example:
    Sub MainMacro()
    dim String_Variable as string
    dim rng1 as range
    dim rng2 as range
    'other dims...
    'other code...
    
    'define the ranges
    set rng1 = activecell
    set rng2 = rng1.offset(1,0)
    
    'apply looping...
    'define the string (including the string variable on the right of the _
    equals sign means that it will add the new value to the existing _
    value when you add your looping code). 
    String_Variable = String_Variable & ParseText(9,rng1, rng2)
    
    'other code...
    end sub
    
    Function ParseText(ByVal Spaces_To_Add As Integer, Cell1, Cell2)
      ParseText = Cell1 & Space(Spaces_To_Add) & Cell2
     End Function
    hth
    Rob

+ Reply to 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