Results 1 to 3 of 3

Locate worksheet according to specific value

Threaded View

  1. #1
    Registered User
    Join Date
    01-04-2009
    Location
    Singapore
    MS-Off Ver
    Excel 2003
    Posts
    20

    Locate worksheet according to specific value

    Hi All,

    Could anyone help me out with this? Here is the VBA:

    Sub ImportData()
    
    Dim rngFullName As Range
    Dim wbData As Workbook
    Dim wsDataCtrl As Worksheet
    Dim wbOpen As Workbook
    Dim wsOpen As Worksheet
    Dim wsDataName As String
    
    Application.ScreenUpdating = False
    
    Set wbData = ThisWorkbook
    Set wsDataCtrl = wbData.Sheets("Control")
    Set rngFullName = wsDataCtrl.Range("H3")
    
    Set wbOpen = Workbooks.Open(rngFullName, UpdateLinks:=False)
    Set wsOpen = wbOpen.Sheets("DATABASE 1")
    
        wsOpen.Activate
        Range("A3:Z10").Select
        Selection.Copy
        Windows("ANALYSIS.xls").Activate
            
    Set wsDataName = Range("H6").Value
    
        Sheets(wsDataName).Activate
        Range("A3").Select
        Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
            :=False, Transpose:=False
        Application.CutCopyMode = False
        
    wbOpen.Close False
    
    End Sub
    Analysis.xls is workbook B and I need to copy the data from workbook A to workbook B's specific worksheet as indicated in cell H6. I have already pre-defined a few worksheets and H6 will show the worksheet name upon data importing. But, I couldn't get excel to copied the data to the specify worksheet and it has to be dynamic as mention.

    Hope you guys can help.

    Thank you

    Justin
    Last edited by justinng; 09-08-2010 at 01:54 AM.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1