hi,
I don't know about Mac 2008 version, but this tests OK in Excel 2003.
Make a table. I used header "A_List" and immediately below that a value 1.
Give this defined name "whatever". Save the file.
Add a query table. Excel 2003 is via menu ALT-D-D-N and follow wizard to the end. Then choose the option to edit in MS Query and edit SQL to become
Code:
SELECT A_List + 1 AS [NextValue]
FROM whatever
Set the queries properties so that the query refreshes on file open.
In the A_List cell where you initially entered 1, change that to =1+'the cell returned from the query'
Voila. Each time the file opens the query refreshes automatically and the number increments by one with no VBA used.
HTH