IIF Is Null AND

bthomas

Board Regular
Joined
Mar 4, 2008
Messages
139
Hi! I am trying to figure out how to write a formula in a query where it searches two fields in an IIF statement.

I tried...

Code:
Current and Future Territory?: IIF([Remove Account From] Is Null And IIf([Effective Billing Month/Year (Oct FY11 = 1/2011)]<=Forms![TerrMgmt-Form-ParameterForm]!cbocurrentbilling,"Y",IIf([correction?]=True,"Y","")))

I am getting an error that states I have the wrong number of arguments

And then I tried...

Code:
Current and Future Territory?: IIF (IsNull([Remove Account From]  And IIf([Effective Billing Month/Year (Oct FY11 = 1/2011)]<=Forms![TerrMgmt-Form-ParameterForm]!cbocurrentbilling,"Y",IIf([correction?]=True,"Y","")))

I am getting an error that states I have the wrong number of parentheses.

What am I doing wrong? Thanks so much!
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
maybe

Code:
Current and Future Territory?: 
IIF 
(
  [Remove Account From] is null 
  And 
  [Effective Billing Month/Year (Oct FY11 = 1/2011)] <= Forms![TerrMgmt-Form-ParameterForm]!cbocurrentbilling,
  "Y",  ' -- if the two statements above are true
  IIf   ' -- if one or both of the 2 statements above are false
  (
    [correction?] = True,
    "Y",
    ""
  )
)
 
Upvote 0

Forum statistics

Threads
1,216,077
Messages
6,128,673
Members
449,463
Latest member
Jojomen56

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top