Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Excel Parsing Column - Help

Status
Not open for further replies.

121854

MIS
Aug 2, 2003
60
US
Need to parse a column in excel that contain the following information. Could someone provide me some guidance so that I can parse this column using Excel or a macro or in VBA.

The information that I need to parse is:
Column A:
"25209
375487
BroadBand (WEST)"

Need to parse it like:
Column D Column E Column F
25209 375487 BroadBand (West)

Your assistance will be appreciated.
 
Take a look at the Split function.

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ222-2244
 
if you parse it only to put column information accross several rows you can copy the the column range and then paste it back using transpose option which actually "rotates" columns to rows and back:

With Worksheets("Sheet1")
.Range("A1:A3").Copy
.Range("D1:F1").PasteSpecial xlPasteAll, xlPasteSpecialOperationNone, True, True
End With

(transpose is the last true statement)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top