Combine IIf expressions

summer

Registered User.
Local time
Today, 15:18
Joined
Oct 15, 2001
Messages
65
Hello-

I would like to combine the following two IIf expressions:

=IIf(IsNull([Due Date]),"No")

=IIf([Due Date]>Now(),"OK","OUT OF CALIBRATION")

How do I accomplish that? I've tried semi-colons, commas, parentheses...

Can anyone help??
 
=IIf(IsNull([Due Date]),"No",IIf([Due Date]>Now(),"OK","OUT OF CALIBRATION"))
 
Now wasn't that easy...

Thank you Newman!
 
Hello Newman,

Can you please help me on my query expression?

I have this expression working [(WT=THK*WIDTH)/1000*LEN/1000*7.85*QTY]

I have two TYPES to evaluate in order to get the weight (7.85 or 8)

TYPE: "CS"=7.85
TYPE: "SS"=8

I don't know how to write the IIF statement.

Many thanks for your help,
ca
 
Hello Newman,

Can you please help me on my query expression?

I have this expression working [(WT=THK*WIDTH)/1000*LEN/1000*7.85*QTY]

I have two TYPES to evaluate in order to get the weight (7.85 or 8)

TYPE: "CS"=7.85
TYPE: "SS"=8

I don't know how to write the IIF statement.

Many thanks for your help,
ca
 

Users who are viewing this thread

Back
Top Bottom