Is there a way to count delimiters before a text-to-columns is performed on a paste event?

philwojo

Well-known Member
Joined
May 10, 2013
Messages
533
Hello, I have a sheet that data is being pasted in to and it should contain 57 fields, so 56 delimiters, in this case a comma. Is there a way to have VBA code to count the number of delimiters that are in the data on the paste event and display that number?

I need to check this because it is possible that the data could contain more or less that what should be there and since some data fields don't contain data you can't always tell if there is an extra or missing comma. Specifically the last 3 fields should all be blank, but the data needs the comma's there for the file to be read properly by another tool.

Thanks,
Phil
 
OK, I think I got it to work, probably not the best way, but it does run and appears to do what I need it to do.

Here is my updated code in the 2nd portion:

Code:
Sub Text2ColSplit()    Range("b7:b6000").TextToColumns _
      Destination:=Range("b7:b6000"), _
      DataType:=xlDelimited, _
      TextQualifier:=xlDoubleQuote, _
      ConsecutiveDelimiter:=False, _
      Comma:=True


End Sub

If someone has a cleaner way to do it I'm always up for learning.
 
Upvote 0

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
My improved version

Code:
Sub aTest()
    'Count commas on each line
    Dim myFile As String, textline As String
    Dim dic As Object, i As Long, vKey As Variant
    Set dic = CreateObject("Scripting.Dictionary")
    
    myFile = Application.GetOpenFilename()
    Open myFile For Input As [URL=https://www.mrexcel.com/forum/usertag.php?do=list&action=hash&hash=1]#1[/URL] 
    
    Do Until EOF(1)
        i = i + 1
        Line Input [URL=https://www.mrexcel.com/forum/usertag.php?do=list&action=hash&hash=1]#1[/URL] , textline
        dic(i) = Len(textline) - Len(Replace(textline, ",", ""))
    Loop
    Close [URL=https://www.mrexcel.com/forum/usertag.php?do=list&action=hash&hash=1]#1[/URL] 
    
    'Put the results to a sheet <--- adjust sheet name and ranges
    'Headers
    Sheets("Sheet1").Range("A1:B1") = Array("Line", "Num of commas")
    'Results
    With dic
        Sheets("Sheet1").Range("A2").Resize(.Count, 2).Value = Application.Transpose(Array(.keys, .items))
    End With
End Sub

Hope this helps

M.
 
Upvote 0
Sorry to come in late but if I understood correctly this should do it.

Code:
Sub ASNEE()

Dim lRow, i As Long
'--------------------------Count Commas------------------------------------------------------------------------------
lRow = ActiveSheet.Cells.Find(What:="*", SearchOrder:=xlRows, SearchDirection:=xlPrevious, LookIn:=xlValues).Row


For i = lRow To 1 Step -1
    Cells(i, 1).Value = Len(Cells(i, 2).Value) - Len(Replace(Cells(i, 2).Value, ",", "")) 'You need to select a different column or sheet
Next                                                                                      'to paste the information otherwise it'll get overwritten


'---------------------------Text-to-Columns--------------------------------------------------------------------------


Range("B7:B" & lRow).TextToColumns Destination:=Range("B7"), DataType:=xlDelimited, _
TextQualifier:=xlTextQualifierDoubleQuote, ConsecutiveDelimiter:=False, Comma:=True


End Sub
 
Upvote 0
Code:
Sub ASNEE()

Dim lRow, i As Long
'--------------------------Count Commas------------------------------------------------------------------------------
lRow = ActiveSheet.Cells.Find(What:="*", SearchOrder:=xlRows, SearchDirection:=xlPrevious, LookIn:=xlValues).Row


For i = lRow To 1 Step -1
    Cells(i, 1).Value = Len(Cells(i, 2).Value) - Len(Replace(Cells(i, 2).Value, ",", "")) 'You need to select a different column or sheet
Next                                                                                      'to paste the information otherwise it'll get overwritten


'---------------------------Text-to-Columns--------------------------------------------------------------------------


Range("B7:B" & lRow).TextToColumns Destination:=Range("B7"), DataType:=xlDelimited, _
TextQualifier:=xlTextQualifierDoubleQuote, ConsecutiveDelimiter:=False, Comma:=True




'---------------Bonus just for fun and giggles removing blank cells---------------------------------------------------


For i = lRow To 7 Step -1
    Rows(i).SpecialCells(xlCellTypeBlanks).Delete Shift:=xlToLeft
Next
End Sub
 
Upvote 0
Sorry I have not yet had a chance to try it out, been busy with putting out other fires at work. I'll try and get to this today and post back.

I appreciate the assistance though.

Phil
 
Upvote 0
Sorry I have not yet had a chance to try it out, been busy with putting out other fires at work. I'll try and get to this today and post back.

I appreciate the assistance though.

Phil

Phil,

If i understood your question correctly, you do want to count the delimiters (comma) ,on each line of .txt file, before Text-to-Columns is performed.
If so, try my code in post 12.

M.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,957
Messages
6,122,466
Members
449,086
Latest member
kwindels

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