Hi Norhaya,
The header is the easy part. You don't need a macro for that! Here's a basic recipe--create the headers in sheet1. Now, you can begin importing/parsing data from a text file.
dim i as Long
dim tmpString as String
dim tmpAverageUnitCost as String
i = 2
' Remember your headers are on Row 1, naturally, you want be begin on 2
Open "c:\your directory here\" & "Filename.txt" For Input As #1
Do While Not EOF(1) ' read entire text file until end of file
Line Input #1, tmpString ' read each line and begin parsing
' let's go for an easy one, "Average unit cost" - after this, you should be able
' to come up with if-scenarios to parse out the remaining fields. The first 2
' fields Item Number and Description you may have to just go with counting
' the number of spaces
if (InStr(tmpString, "Average unit cost")) > 0 Then
tmpAverageUnitCost = Mid(tmpString, 20, 14)
' use instr to go after the fields
' use a string function like 'mid' to extract needed info--beginning on the
' 20th char and 14 chars long will get you 0.47. Now, to display this data
' on to the Excel spreadsheet under the correct column (Average Unit
' Cost ... column E)
Sheet1.Range("E" & i).Value = tmpAverageUnitCost
End If
i = i + 1
Loop
Close #1
Bookmarks