vote up 1 vote down star

I have a Microsoft Access database query that I'm trying to import into a Visual Studio 2005 dataset.

When the query is formed using an NZ() function like this:

SELECT NZ(tblComponentSpecs.nPurchaseCostQuantity, 0) AS Quantity
FROM tblComponentSpecs;

it appears under the Functions list in the Data Connection.

However, when the query is formed using an IIF() function like this:

SELECT IIF(tblComponentSpecs.nPurchaseCostQuantity Is Null, 0, nPurchaseCostQuantity) AS Quantity
FROM tblComponentSpecs;

it appears under the Views list.

Can anyone please explain why?

flag

1 Answer

vote up 2 vote down check

Probably this is because Nz() is a VBA function, whereas IIF is part of Jet SQL. (Yes, there also is a function named Iif() in VBA. Further info is on Allen Browne's web site.)

I guess that IIF is translated to CASE WHEN and then makes a valid view, and Nz() is not translated.

link|flag
Thanks for the answer, that's probably it. Allen Browne's site is excellent too. Cheers. – Jonathan Webb Oct 18 '08 at 16:43

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.