Hi Everyone,
The macro below is an HTML copy from a folder(file:///C:/Users/HOME/Dropbox/DAILY_SALES_REPORTS/DAY_END.HTML) and pasted to a worksheet(IMPORT_HTML). Works like a charm until the DAY_END.HTML file is overwritten which we do daily.
The way it was recorded is to open folder (file:///C:/Users/HOME/Dropbox/DAILY_SALES_REPORTS/DAY_END.HTML), select open with
Internet Explorer, select all, copy, close Internet Explorer and paste to cell A1 in worksheet(IMPORT_HTML).
Not sure what the issue is so any help would be greatly appreciated.
Thank you!!
The macro below is an HTML copy from a folder(file:///C:/Users/HOME/Dropbox/DAILY_SALES_REPORTS/DAY_END.HTML) and pasted to a worksheet(IMPORT_HTML). Works like a charm until the DAY_END.HTML file is overwritten which we do daily.
The way it was recorded is to open folder (file:///C:/Users/HOME/Dropbox/DAILY_SALES_REPORTS/DAY_END.HTML), select open with
Internet Explorer, select all, copy, close Internet Explorer and paste to cell A1 in worksheet(IMPORT_HTML).
Not sure what the issue is so any help would be greatly appreciated.
Thank you!!
Code:
Sub TEST_IMPORT()'
' TEST_IMPORT Macro
'
ActiveSheet.PasteSpecial Format:="HTML", Link:=False, DisplayAsIcon:= _
False
End Sub