Logical condition syntax in column formulas

M

MartinV

Anybody knows the syntax for logical condition in formulas (MSP2000)
The field is Number1. Incomplete but working formula is IIf( [Status Date]<[Start]; 0; 1

MY desired formula would be
IIf( [Status Date]<[Start] AND [% Complete]=0; 0; 1
optionally
IIf( AND ([Status Date]<[Start]; [% Complete]=0); 0; 1

none of these works! :-( what is the correct syntax? (nothing found in Help!
Many thanks
 
G

Gérard Ducouret

Hello Martin,

On my PC, your formula works well when I change the separator : comma
instead of semi colon
IIf([Status Date]<[Start] And [% Complete]=0,0,1)

Gérard Ducouret
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top