VBA import HTML file with add form control button into one sheet

Day

New Member
Joined
Nov 3, 2021
Messages
4
Office Version
  1. 365
  2. 2019
Platform
  1. Windows
  2. MacOS
Hi all, I have a problem, when I import an HTML file it automatically opens another worksheet (data). I would like to know how to import the data into the same worksheet(sheet1).
1639988100755.jpeg

This is the code that I found:
VBA Code:
Sub import_file()
Dim WS As Variant
Dim WD As Worksheet
Dim myFile As Variant

Set WD = ThisWorkbook.ActiveSheet

myFile = Application.GetOpenFilename("HTML Files (*.html), *html*", , "Choose File", "Open", False)
    If myFile = False Then
        Exit Sub
    Else
        Workbooks.Open (myFile)
        Set WS = ActiveWorkbook.ActiveSheet
    End If

Application.ScreenUpdating = False

WS.Activate
'WS.Copy
ActiveWorkbook.Close
Application.ScreenUpdating = True

MsgBox "Data Updated"
End Sub
I wish that somebody could help me. Thanks in advance.
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.

Forum statistics

Threads
1,214,388
Messages
6,119,226
Members
448,878
Latest member
Da9l87

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