Debugging... I've tried the following combinations WITHOUT success to Activate a named sheet from ECN Navigator.xls
Workbooks(strECNN & "D0_Face.xls"
.Activate
Set f = ActiveSheet
Workbooks("ECN Navigator.xls"
.Activate
Worksheets("ECN Face Page"
.Activate
Set t = ActiveSheet
(Produces Run Time Error 9 - Subscript out of range and highlights the last line, ie Worksheets("ECN....
Next attempt:
Workbooks(strECNN & "D0_Face.xls"
.Activate
Set f = ActiveSheet
Workbooks("ECN Navigator.xls"
.Sheets("ECN Face Page"
.Activate
Set t = ActiveSheet
Same Error Message as Above
any suggestions?
John
Workbooks(strECNN & "D0_Face.xls"
Set f = ActiveSheet
Workbooks("ECN Navigator.xls"
Worksheets("ECN Face Page"
Set t = ActiveSheet
(Produces Run Time Error 9 - Subscript out of range and highlights the last line, ie Worksheets("ECN....
Next attempt:
Workbooks(strECNN & "D0_Face.xls"
Set f = ActiveSheet
Workbooks("ECN Navigator.xls"
Set t = ActiveSheet
Same Error Message as Above
any suggestions?
John