HELP!!! Nested Functions in a query (1 Viewer)

ausmoran

Registered User.
Local time
Today, 10:37
Joined
Aug 30, 2001
Messages
13
Can someone tell me what is wrong with the syntax here?

SPEC:IIF([field2],"100","",IIF([field3],", 102","",IIF([field4],", 106","")))

Thanks in advance
Austin
 

RV

Registered User.
Local time
Today, 10:37
Joined
Feb 8, 2002
Messages
1,115
Quite a lot... (just kidding).

Here's the correct syntax:

IIF([field2],"100",IIF([field3],"102",IIF([field4],"106","")))

Suc6,

RV
 

Users who are viewing this thread

Top Bottom