Guys I have an old excel spreadsheet which we need to run in excel 2003.
The spreadsheet was created using version 95.
The VBA code that I have having issues with is this one.
Code:
--------------------
Application.Run "QueryGetData", "", _
"SELECT tablename.tablefield" _
, , , , , False
--------------------
The issue is with the QueryGetData, this from what I have ascertained
is an old function within excel. It was used to query a database and
retrieve information.
I was wondering if there was a replacement function in excel 2003.
Bach