IIF Syntax Problem (1 Viewer)

Novice1

Registered User.
Local time
Yesterday, 23:04
Joined
Mar 9, 2004
Messages
385
I cannot figure out what is wrong with this syntax. Any help would be appreciated.

=IIF(IsNull[RSN_Increase]), “$ __________”, ("Increase or restore my SGLI coverage to " & [RSN_Increase_Amt] & ". You must complete section 3, 4 and 5.")
 

MSAccessRookie

AWF VIP
Local time
Today, 02:04
Joined
May 2, 2008
Messages
3,428
I cannot figure out what is wrong with this syntax. Any help would be appreciated.

=IIF(IsNull([RSN_Increase])), “$ __________”, ("Increase or restore my SGLI coverage to " & [RSN_Increase_Amt] & ". You must complete section 3, 4 and 5.")

Unless there is a typing error, I think you might be missing a pair of parentheses (see above). Let us know if that makes any difference.

-- Rookie
 

Novice1

Registered User.
Local time
Yesterday, 23:04
Joined
Mar 9, 2004
Messages
385
I'm still getting an error - Wrong number of arguments
 

pbaldy

Wino Moderator
Staff member
Local time
Yesterday, 23:04
Joined
Aug 30, 2003
Messages
36,128
Try

=IIF(IsNull([RSN_Increase]), “$ __________”, "Increase or restore my SGLI coverage to " & [RSN_Increase_Amt] & ". You must complete section 3, 4 and 5.")
 

Users who are viewing this thread

Top Bottom