Hi All,
I am doing an Access report and for one of the fields I am required to do a "fairly" complicated formula whose results change depending on other values stored in other fields on the form.
The Excel formula is this:
=IF(A7="Completed",IF(OR(K7="Cost Avoidance vs Budget",K7="Once-Off"),0,M7*(($M$1)-J7)/365),"")
I tried to convert it into a Report formula like so:
= IFF ( [IMPORTANCE] = "Complete"
,IFF [Category] = "Cost Avoidance vs Budget,
"0",
IFF [Category] = "Once-Off",
"0",
([Projected Group Benefit] * (((31/12/2007) - [Contract Date]) / 365)),
"")
But it doesn't seem to work. I'd really appreciate any help on this you could give.
Cheers,
Colm
I am doing an Access report and for one of the fields I am required to do a "fairly" complicated formula whose results change depending on other values stored in other fields on the form.
The Excel formula is this:
=IF(A7="Completed",IF(OR(K7="Cost Avoidance vs Budget",K7="Once-Off"),0,M7*(($M$1)-J7)/365),"")
I tried to convert it into a Report formula like so:
= IFF ( [IMPORTANCE] = "Complete"
,IFF [Category] = "Cost Avoidance vs Budget,
"0",
IFF [Category] = "Once-Off",
"0",
([Projected Group Benefit] * (((31/12/2007) - [Contract Date]) / 365)),
"")
But it doesn't seem to work. I'd really appreciate any help on this you could give.
Cheers,
Colm