Results 1 to 2 of 2

Macro to copy the data under the specified name from one sheet

Threaded View

  1. #1
    Registered User
    Join Date
    08-15-2011
    Location
    Pakistan
    MS-Off Ver
    Excel 2007
    Posts
    38

    Macro to copy the data under the specified name from one sheet

    hi i am using varColumn right now the code is as follows


    Sub finds(strName As String)
    '
    ' finds Macro
       Dim wksHSE            As Excel.Worksheet
       Dim wksEmp            As Excel.Worksheet
       Dim varColumn
    
       Set wksEmp = Sheets("Emp Ind HSE")
       Set wksHSE = Sheets("HSE_Matrix")
    
       ' find employee column on matrix sheet
       varColumn = Application.Match(strName, wksHSE.Range("7:7"), 0)
       If IsError(varColumn) Then
          ' no match so display error message
          MsgBox "No match found for employee: " & strName
       Else
          ' copy employee data across
          wksHSE.Cells(9, varColumn).Resize(43, 1).Copy Destination:=wksEmp.Range("H8:H50")
          wksEmp.Range("c5").Value = wksHSE.Cells(53, varColumn).Value
       End If
    
    End Sub
    Write now it copies the data under the name which is in a merged cell i want it to copy all the 4 columns i.e the next three as well and then paste it into specified cells on another sheet
    Attached Files Attached Files

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