conception_native_0123
Well-known member
- Local time
- Today, 15:58
- Joined
- Mar 13, 2021
- Messages
- 1,923
hi everyone
how do i do this? i am trying to change html code inside an excel file and then move the html to another folder. right now i have 2 excel files working to do this but i do not think i need that much. here is the code in my first file after the html is imported
then i am using kill statement and name statement to get my html file to the export directory. am i doing too much? do i need to post more code? thank you
how do i do this? i am trying to change html code inside an excel file and then move the html to another folder. right now i have 2 excel files working to do this but i do not think i need that much. here is the code in my first file after the html is imported
Code:
On Error Resume Next
'copy bookmarks to other folder
ActiveWorkbook.SaveAs Filename:= _
"C:\exports\export_html.txt", FileFormat:=xlText, CreateBackup:=False
Workbooks.Open ("C:\exports\second_process.xlsm")
ActiveWorkbook.Close
then i am using kill statement and name statement to get my html file to the export directory. am i doing too much? do i need to post more code? thank you