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

How can you automate Excel?
Press Alt+F11 from Windows Excel to open the Visual Basic for Applications (VBA) editor.

Forum statistics

Threads
1,214,935
Messages
6,122,337
Members
449,078
Latest member
skydd

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