I am using macros, how can I reference named cell names to collect thevalues?
Try this.Sub Test()x = Range("MyName")MsgBox (x)End Sub
This one worked if the macro is in the same workbook. how would youdo it if the info is in a different workbook.
Example:Sub Test()x = Range("Book2!MyCell")MsgBox (x)End Sub