Assuming your data is in Column F2 and below of Sheet1, try this:
Sub DeLimit()
Dim R As Range
For Each R In Worksheets("Sheet1").Range("F2", Range("F" & Rows.Count()).End(xlUp))
R.TextToColumns _
Destination:=R, _
DataType:=xlDelimited, _
TextQualifier:=xlDoubleQuote, _
ConsecutiveDelimiter:=False, _
Tab:=True, _
Semicolon:=False, _
Comma:=False, _
Space:=False, _
Other:=True, _
OtherChar:="" & Chr(10)
Next R
End Sub
You should be able to use this "regularly" on a particular workbook by changing the sheet name and column reference as per your needs. However, when you say "...for a lot of files", I think an ideal situation would be to save the macro as an Add-In...
Hope this helps.
Bookmarks