Hello, I'm trying to do simple total on an OUTCOME_DESC field thats in a group header. In the group footer I have a text box which is where I'm trying to do the total with a control source of:
[OUTCOME] is the name of the bound field for OUTCOME_DESC
=Sum(IIf([Reports]![ACTIVITY_LOG_RPT].[OUTCOME]='Approved',1,0))
it returns 0 when I know there are 206.
If I try to take out the '' marks around Approved like:
=Sum(IIf([Reports]![ACTIVITY_LOG_RPT].[OUTCOME]=Approved,1,0))
I get ask to Enter Paraneter Value for Approved.
please help any ideas?
[OUTCOME] is the name of the bound field for OUTCOME_DESC
=Sum(IIf([Reports]![ACTIVITY_LOG_RPT].[OUTCOME]='Approved',1,0))
it returns 0 when I know there are 206.
If I try to take out the '' marks around Approved like:
=Sum(IIf([Reports]![ACTIVITY_LOG_RPT].[OUTCOME]=Approved,1,0))
I get ask to Enter Paraneter Value for Approved.
please help any ideas?