BananaQuaaludes
Programmer
Hello,
I have the following query in an Excel vba macro:
SELECT [DELTEK_ORG_ACCT].[ACCT_ID] , [DELTEK_ACCT].[ACCT_NAME] FROM DELTEK_ORG_ACCT INNER JOIN DELTEK_ACCT ON [DELTEK_ORG_ACCT].[ACCT_ID]=[DELTEK_ACCT].[ACCT_ID] WHERE ((([DELTEK_ORG_ACCT].[ORG_ID])='1.1201.01'));
and I get the following error:
run time error 3001: arguments are of the wrong type, are out of acceptable range, or are in conflict with one another.
I think it doesn't like my inner join, but I'm not sure why.
Any help would be appreciated!!
I have the following query in an Excel vba macro:
SELECT [DELTEK_ORG_ACCT].[ACCT_ID] , [DELTEK_ACCT].[ACCT_NAME] FROM DELTEK_ORG_ACCT INNER JOIN DELTEK_ACCT ON [DELTEK_ORG_ACCT].[ACCT_ID]=[DELTEK_ACCT].[ACCT_ID] WHERE ((([DELTEK_ORG_ACCT].[ORG_ID])='1.1201.01'));
and I get the following error:
run time error 3001: arguments are of the wrong type, are out of acceptable range, or are in conflict with one another.
I think it doesn't like my inner join, but I'm not sure why.
Any help would be appreciated!!