appending a text file

np1966

New Member
Joined
Jan 26, 2017
Messages
1
at present i am using the following code to append a text file abc.txt into an excel file and here i am giving the entire path.

without mentioning the path, is there any way to append a text file say abc.txt which is present in the same folder of the excel file


Code:
With ActiveSheet.QueryTables.Add(Connection:="TEXT;e:\new\product\abc.txt" _
        , Destination:=Range("$A$1"))
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
I append an error log text file using this sub: Could be adpated to achieve what you need?

Code:
Public Sub WriteError(sSub As String)

Dim sUserName As String
    'Generate an entry to the log for the error
    sUserName = StrConv(Environ("UserName"), vbProperCase)
    
    Open "S:\Ops\Ops Support\Runplans\Data\Error Logs\RunPlanErrorLog.log" For Append As #1


    Print #1, sUserName & "|" & sSub & "|Error: " & Err.Number & " " & Err.Description & "|" & Format(Now, "dd/mm/yy hh:mm:ss")


    Close #1
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,200
Messages
6,123,601
Members
449,109
Latest member
Sebas8956

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