Browse file and Copy it into worksheet selected in combobox.

adityawarkhede321

New Member
Joined
Mar 11, 2023
Messages
2
Office Version
  1. 365
Platform
  1. Windows
  2. Mobile
  3. Web
hi everyone,

i have a workbook which has userform in which we have one combo box which contains name of worksheets also have one listbox box,

now i want to import data from external file and copy it to in the worksheet which is selected in combobox.
if i select another option in combobox then upon commnd file should be able to copy into another sheet which selected in combo box.

VBA Code:
i'm using this vba code ,
  Dim FileToOpen As Variant
    Dim OpenBook As Workbook
    Application.ScreenUpdating = False
    FileToOpen = Application.GetOpenFilename(Title:="Browse for your File & Import Range", FileFilter:="Excel Files (*.xls*),*xls*")
    If FileToOpen <> False Then
        Set OpenBook = Application.Workbooks.Open(FileToOpen)
        OpenBook.Sheets(1).Range("A1:E20").Copy
        [COLOR=rgb(250, 197, 28)]ThisWorkbook.Worksheets("[/COLOR][COLOR=rgb(235, 107, 86)]SelectFile[/COLOR][COLOR=rgb(250, 197, 28)]").Range("A10").PasteSpecial xlPasteValues[/COLOR]
        OpenBook.Close False
        
    End If
    Application.ScreenUpdating = True
End Sub

can anyone help me with this
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.

Forum statistics

Threads
1,215,456
Messages
6,124,939
Members
449,197
Latest member
k_bs

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