I have to copy data from a text file to excel
I tried recording it but all I managed to get was this:
Sub Macro1()
'
' Macro1 Macro
'
'
Range("A1").Select
ActiveSheet.PasteSpecial Format:="Unicode Text", Link:=False, _
DisplayAsIcon:=False, NoHTMLFormatting:=True
End Sub
I...