Hello,
I have a report with people's ages on. What I want is if somebody on my list has an [Age] of 60 a text box should read "60 or over", otherwise it should read "Over 60".
I know this should be simple but have been having trouble with it.
My text box [txtOver] has the following control source:
But it does not work.
However, if I do for example:
it works (says "Over Forty") when all the people are over 40.
What I want is for if anyone is 60 for the value to change.
Would appreciate any help.
Dave
I have a report with people's ages on. What I want is if somebody on my list has an [Age] of 60 a text box should read "60 or over", otherwise it should read "Over 60".
I know this should be simple but have been having trouble with it.
My text box [txtOver] has the following control source:
Code:
IIf([Age]=60,"60 or Over","Over 60")
However, if I do for example:
Code:
IIf([Age]>40,"Over Forty","Younger")
What I want is for if anyone is 60 for the value to change.
Would appreciate any help.
Dave