Results 1 to 7 of 7

Select and Copy Range from Active Cell

Threaded View

  1. #1
    Registered User
    Join Date
    05-08-2006
    Posts
    77

    Select and Copy Range from Active Cell

    I've got my language wrong.

    I want my code to evaluate each cell in column B, and based on its value, copy the row from D to X and paste on the newly activated worksheet. I'm trying to use Offset, but it's not working.

    Sub CrtTms_Click()
    Dim Ans As Integer
    
    Ans = MsgBox("Has Each Child Been Assigned A Team?", vbYesNo)
    
    Select Case Ans
    Case vbNo
    Exit Sub
    
    Case vbYes
    Dim TmNmbr As Range
    With Sheet1
    
    For Each TmNmbr In Range("B2:B200")
    
        Range(ActiveCell.Offset(0, 2), ActiveCell.Offset(0, 21)).Select
        Selection.Copy
    
    Select Case TmNmbr.Value
    
        Case 1
    
            Sheet2.Activate
            Range("A2").Select
                Do
    
                    If IsEmpty(ActiveCell) = False Then
    
                    ActiveCell.Offset(1, 0).Select
            
                    End If
    
                Loop Until IsEmpty(ActiveCell) = True
                
     ActiveCell.PasteSpecial
     Application.CutCopyMode = False
     
    
    End Select
    Next TmNmbr
    
    End With
    
    End Select
    
    End Sub
    Last edited by Leah; 10-21-2009 at 03:09 PM.

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