What I'm trying to setup, is for a user to be able to select a row of text from a table and click on a button to have Excel copy the selection to another worksheet and insert to a non-fixed address. Currently, I tried having it search for a specific text and insert the copied row after that text but I ran into Error 91 "Object variable or With block variable not set." If there is a better way to do this, I'm all ear.
Private Sub CommandButton1_Click()
    Selection.Copy
    Sheets("Form").Select
    Dim FoundRange As Range
    Dim RangeAddress As Range
    Set FoundRange = Sheet3.Cells.Find("SIGN-ON")
    RangeAddress = FoundRange.Address
    RangeAddress.Selection
    Selection.Insert shift:=xlDown
    Sheets("MasterList").Select
End Sub
EDIT: Fixed typo in the code.
 
    