I am using CR 8.5 and I am attempting to higlight certain records in a report that meet certain criteria.
The report is composed of clients who fall into two catergories "Older" and "Younger". The younger clients need to have a goal set while the older clients do not. I have a formula field set up to show whether the client is "Older" or "Younger", @older_younger_youth, then I have a formula in the Section Expert>Details>Color formula area that goes like this...
Now without the
line the formula works as advertised but when I add that line in, the results are the same. If I am correct that should only highlight lines that have Younger in the the formula field named @older_younger_youth.
Where am I going wrong?
TIA,
Paul
The report is composed of clients who fall into two catergories "Older" and "Younger". The younger clients need to have a goal set while the older clients do not. I have a formula field set up to show whether the client is "Older" or "Younger", @older_younger_youth, then I have a formula in the Section Expert>Details>Color formula area that goes like this...
Code:
If {youth_goal.dt_set} + 365 < CurrentDate
And IsNull({youth_goal.result_cd})
And {@older_younger_youth} = "Younger"
Then Yellow
Else NoColor
Now without the
Code:
And {@older_younger_youth} = "Younger"
Where am I going wrong?
TIA,
Paul