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

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.

Forum statistics

Threads
1,215,063
Messages
6,122,930
Members
449,094
Latest member
teemeren

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