T
Ted M H
I am trying to determine the quarter of a ship date using an expression:
Expr1: IIf(Month([PaymentsDetails]![ShipDate]>=1) And
Month([PaymentsDetails]![ShipDate]<=3),"Q1","QY")
I'll add the other nested IIfs later, but right now I'm just trying to get
the expression above to work. It's currently returning Q1 for any value
other than null.
12/1/2004 is Q1
1/26/2005 is Q1
null is QY
Somehow the expression isn't doing the And operator. What am I doing wrong
here?
Expr1: IIf(Month([PaymentsDetails]![ShipDate]>=1) And
Month([PaymentsDetails]![ShipDate]<=3),"Q1","QY")
I'll add the other nested IIfs later, but right now I'm just trying to get
the expression above to work. It's currently returning Q1 for any value
other than null.
12/1/2004 is Q1
1/26/2005 is Q1
null is QY
Somehow the expression isn't doing the And operator. What am I doing wrong
here?