Splitting text into columns at space every time data changes using VBA

Andrew1234

New Member
Joined
Feb 1, 2023
Messages
29
Office Version
  1. 2013
Platform
  1. Windows
Hi, I have been heavily researching on how to split information in one cell and have it put into columns using vba.
Any codes I found online either needed me to run the macro every time or they didn't work. I would like it to run every time data is added on this particular sheet.
I have a very basic understanding of vba and simply do not know how to write the coding.

Here are some images showing what I want to achieve.

excel.PNG

excel1.PNG


from these images you can see that I need to split information from column A across columns B - H.
I would like the information to be split straight away as soon as the information comes into column A. I hope this can be done.

Just to make you aware, I also have a simple code for this worksheet that simply move on to the next cell automatically after the information is scanned in using the barcode scanner.

Here is an image of the code used for moving to the next cell.
excelvba.PNG



If someone could help me with this issue it would be much appreciated.
Many thanks for your help in advance!
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
Hi,

You could turn on your macro recorder and go through the process once with Data>Text to Columns ...

As a result, an initial macro would be already generated for you ...
 
Upvote 0
Does this charge event procedure do what you want...
VBA Code:
Private Sub Worksheet_Change(ByVal Target As Range)
  If Target.Column = 1 And Target.Row > 1 Then
    Application.EnableEvents = False
    Target.TextToColumns Target.Offset(, 1), xlDelimited, , True, False, False, False, True, False
    Application.EnableEvents = True
  End If
End Sub
 
Upvote 0
Is it:

VBA Code:
Option Explicit

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column <> 1 Then Exit Sub ' trigger only change in column 1 (column A)
Dim i&, s
s = Split(Target) ' split text string with " " delimiter
For i = 0 To UBound(s) ' loop thru each part
    Target.Offset(, i + 1).Value = s(i)
Next
End Sub
 
Upvote 0
Just for fun, I know you have Excel 2013, but this ms365 solution would auto-update when new data is pasted in column A:

Book1
ABCDEFGH
1Information from scanBarcodeIn/OutQuantityFirst NameLast NameDateTime
2123 check-in 1 jimmy jones 123 456123check-in1jimmyjones123456
3456 check-out 1 jack jones 123 789456check-out1jackjones123789
Sheet2
Cell Formulas
RangeFormula
B1:H3B1=LET(x,{"Barcode","In/Out","Quantity","First Name","Last Name","Date","Time"},IFERROR(REDUCE(x,DROP(TOCOL(A:A,3),1),LAMBDA(a,b,VSTACK(a,TEXTSPLIT(b," ")))),x))
Dynamic array formulas.
 
Upvote 0
If you are pasting data in blocks then maybe the below:
VBA Code:
Private Sub Worksheet_Change(ByVal Target As Range)
    Dim rCell As Range, var As Variant
    
    If Target.Column <> 1 Then Exit Sub
    For Each rCell In Target.Cells
        var = Split(rCell.Value)
        rCell.Offset(, 1).Resize(, UBound(var) + 1) = var
    Next rCell
End Sub
 
Upvote 0
Does this charge event procedure do what you want...
VBA Code:
Private Sub Worksheet_Change(ByVal Target As Range)
  If Target.Column = 1 And Target.Row > 1 Then
    Application.EnableEvents = False
    Target.TextToColumns Target.Offset(, 1), xlDelimited, , True, False, False, False, True, False
    Application.EnableEvents = True
  End If
End Sub
Thank you for your prompt reply, but unfortunately when I use this code an error appears saying that an ambiguous name detected: Worksheet_Change.

here is an image showing my screen.
code trial 1.PNG


This error message was also coming up with a lot of the codes I found online. What should I do?

Many thanks!
 
Upvote 0
Is it:

VBA Code:
Option Explicit

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column <> 1 Then Exit Sub ' trigger only change in column 1 (column A)
Dim i&, s
s = Split(Target) ' split text string with " " delimiter
For i = 0 To UBound(s) ' loop thru each part
    Target.Offset(, i + 1).Value = s(i)
Next
End Sub
Hello thank you for your reply!

I have tried your code and when data is change in the sheet an error code comes up saying that Ambiguous name detected: Worksheet_Change

this was also the case with a lot of codes i found online.
what do you think i should do?

Thank you for your help!
 
Upvote 0
You can't have two subs with the same name, either delete one or change the name of one
 
Upvote 0
Just for fun, I know you have Excel 2013, but this ms365 solution would auto-update when new data is pasted in column A:

Book1
ABCDEFGH
1Information from scanBarcodeIn/OutQuantityFirst NameLast NameDateTime
2123 check-in 1 jimmy jones 123 456123check-in1jimmyjones123456
3456 check-out 1 jack jones 123 789456check-out1jackjones123789
Sheet2
Cell Formulas
RangeFormula
B1:H3B1=LET(x,{"Barcode","In/Out","Quantity","First Name","Last Name","Date","Time"},IFERROR(REDUCE(x,DROP(TOCOL(A:A,3),1),LAMBDA(a,b,VSTACK(a,TEXTSPLIT(b," ")))),x))
Dynamic array formulas.
@JvdV - Here is another XL365 solution that is somewhat shorter than your formula. Here I am setting a large range (can be as large as you want)...
Excel Formula:
=VSTACK({"Barcode","In/Out","Quantity","First Name","Last Name","Date","Time"},TEXTSPLIT(TEXTJOIN("*",,A2:A99)," ","*"))
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,066
Messages
6,122,948
Members
449,095
Latest member
nmaske

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top