I've given up on using the named ranges... and have gone back to referencing
by Row and Column.... here's what I have now (it's the ever-changing code)...
Sub ACSButton_Click()
ACSButton.Caption = "Click Here to Load ACS Services"
Sheets("Solution Map").Select
Range("F36:I201").Copy
Worksheets("Solution Map").Range("J36").Select
Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:= _
True, Transpose:=False
Application.CutCopyMode = False
Range("J36:M201").Sort Key1:=Range("J36"), Order1:=xlDescending,
Key2:=Range( _
"K36"), Order2:=xlDescending, Key3:=Range("L36"),
Order3:=xlDescending, _
Header:=xlGuess, OrderCustom:=1, MatchCase:=False,
Orientation:=xlTopToBottom
Selection.Copy
Sheets("ACS").Select
Range("A8").Select
Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:= _
True, Transpose:=False
Range("A8").Select
End Sub
THanks.
|