9tanstaafl9
Well-known Member
- Joined
- Mar 23, 2008
- Messages
- 535
My report runs great for everyone except person running 64 bit Excel 2010 on Server 2008. (Can't connect to visual foxpro 32 bit odbc driver using VFPODBC 32 bit)
Pops up the ODBC SCREEN asking for the data source.
Here is the connection string from one of the queries, they are all pretty much the same:
Here is the command text: (I doubt it matters, but then again this is not my area.)
Any suggesitons? Anything, even something really obvious. Keep in mind that I have no experience in ODBC so something super obvious I might not know.
Thank you in advance!
Jennifer
Pops up the ODBC SCREEN asking for the data source.
Here is the connection string from one of the queries, they are all pretty much the same:
Code:
DSN=Visual FoxPro Tables;UID=;;SourceDB=M:\MB7\De-Cal;SourceType=DBF;Exclusive=No;BackgroundFetch=Yes;Collate=Machine;Null=Yes;Deleted=Yes;
Code:
SELECT prmchg.phsnum, sbcgln.cstcde, sbcgln.csttyp, Sum(sbcgln.bdgprc) AS 'Sum of bdgprc'
FROM prmchg prmchg, sbcgln sbcgln
WHERE prmchg.recnum = sbcgln.recnum AND ((prmchg.status=$1)) AND (prmchg.jobnum=?) AND (prmchg.actper<=?) AND (sbcgln.chgsts=$1)
GROUP BY prmchg.phsnum, sbcgln.cstcde, sbcgln.csttyp
Thank you in advance!
Jennifer