+ Reply to Thread
Results 1 to 4 of 4

spilt words

Hybrid View

  1. #1
    Forum Expert daddylonglegs's Avatar
    Join Date
    01-14-2006
    Location
    England
    MS-Off Ver
    Microsoft 365
    Posts
    14,719
    Try using Data > Text to columns with space as a delimiter

  2. #2
    Registered User
    Join Date
    10-26-2007
    Posts
    55
    That does what i want except the data gets updated anywhere between 1min and 20 mins so would need to do it manually or set up macro where is i don't want a macro if can get away with it

  3. #3
    Forum Moderator davesexcel's Avatar
    Join Date
    02-19-2006
    Location
    Regina
    MS-Off Ver
    MS 365
    Posts
    13,525
    Quote Originally Posted by delboy2405
    That does what i want except the data gets updated anywhere between 1min and 20 mins so would need to do it manually or set up macro where is i don't want a macro if can get away with it
    Here's an little vba code that you could use
    Maybe even kick it in with a worksheet change event
    Sub Macro1()
        Application.DisplayAlerts = False
        Columns("A:A").TextToColumns Destination:=Range("A1"), DataType:=xlDelimited, _
                                     TextQualifier:=xlDoubleQuote, ConsecutiveDelimiter:=True, Tab:=True, _
                                     Semicolon:=False, Comma:=False, Space:=True, Other:=True, OtherChar:= _
                                     "-", FieldInfo:=Array(Array(1, 1), Array(2, 1), Array(3, 1), Array(4, 1), Array(5, 1), _
                                                           Array(6, 1)), TrailingMinusNumbers:=True
        Application.DisplayAlerts = True
    End Sub

+ 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