Hi Marco
Thank you for your excellent help. You put me on the right track. With your help and some examples from internet searches, I am now able to complete the excel application.
Here is the code that I am now using with great success:
Sub Return_to_Tensioner_Summary()
'
' Return_to_Tensioner_Summary Macro
' Macro created 10/21/2010 by Jim Lombardi
'
' This Macro refreshes sheet "View Request" with a copy of sheet "View Request Format"
' and moves to Column "A" row "1", then sends the user back to the
' "AT a Glace" Summary and into the Tensioner cell in Column "A" Row "12"
'
Sheets("View Requested").Select
Application.DisplayAlerts = False
Sheets("View Requested").Cells.Clear
ActiveSheet.Buttons.Delete
Sheets("View Requested Format").Cells.Copy Sheets("View Requested").Cells(1, 1)
Application.DisplayAlerts = True
Range("A1").Select
Sheets("At a Glance").Select
Range("A12").Select
End Sub
Bookmarks