I
IanB
I'm trying to set a value in a custom number field based on alternatives in
two other fields, and this is what I have tried so far:
IIf([Text18]="Business Activity",[Number10],[Number1]), where summary tasks
may or may not meet the test condition.
This works for tasks and milestones, apart from summary tasks where the
relevant value is not copied in - it's set to 0.
So how do I add in an additional test for summary tasks to set the value
explicitly?
Here's what I have tried so far ...
IIf( [Summary], truepart, falsepart )
IIf( [Summary]=True, truepart, falsepart )
IIf( [Summary]="Yes", truepart, falsepart )
IIf( [Summary]=-1, truepart, falsepart )
And compound conditions - do they work like Excel (eg AND(TestA,TestB,...))
or
or TestA AND TestB ?
Any advice welcome please!
two other fields, and this is what I have tried so far:
IIf([Text18]="Business Activity",[Number10],[Number1]), where summary tasks
may or may not meet the test condition.
This works for tasks and milestones, apart from summary tasks where the
relevant value is not copied in - it's set to 0.
So how do I add in an additional test for summary tasks to set the value
explicitly?
Here's what I have tried so far ...
IIf( [Summary], truepart, falsepart )
IIf( [Summary]=True, truepart, falsepart )
IIf( [Summary]="Yes", truepart, falsepart )
IIf( [Summary]=-1, truepart, falsepart )
And compound conditions - do they work like Excel (eg AND(TestA,TestB,...))
or
or TestA AND TestB ?
Any advice welcome please!