Thanks Bernie. That did the trick. I was unfamiliar with dim statements for a range. I'll read up on this to improve. Below is my code with most commented out. I appreciate the assist. Mike
Sub ContainSymbol()
'
' ContainSymbol Macro
' This symbol is used to identify the week containment is started.
'
'
Dim myC As Range
Set myC = ActiveCell
'Your other code here
' Dim location As Variant
Worksheets("Paynter 2011").Activate
MsgBox "Are you sure that you want to enter the Containment symbol in the cell address: " & Application.ActiveCell.Address
' Range(Application.ActiveCell.Address).Select
' Set location = Range(Application.ActiveCell.Address)
' Set myCell = Application.InputBox( _
' prompt:="Please confirm the cell", Type:=8)
' Set MyCell = Range(Application.ActiveCell.Address)
' Set location = Range(Application.ActiveCell.Address)
' MsgBox "Previous Location: " & location
' MsgBox "Previous Location: " & MyCell
Selection.Copy
Range("BP5").Select
ActiveSheet.Paste
Range("C10").Select
Selection.Copy
' MsgBox "Previous Location: " & location
myC.Select
' Range("location").Select
ActiveSheet.Paste
Worksheets("Paynter 2011").Activate
' MsgBox ActiveCell.Value
End Sub