select *
from accumulator
where accumtype = 'Maxout' and
(description not like '%OON%' and
description not like '%In-Net%')
I need to incorporate the above SQL criteria into a Crystal XI report formula but it is NOT working, any ideas?? Below is my Crystal formula.
if {accumulator.accumtype} = 'Maxout' and
(not("*OON*" in {accumulator.description}) and
not("*In-Net*"in {accumulator.description}))
then {claimdetail.coinsuranceamt}
from accumulator
where accumtype = 'Maxout' and
(description not like '%OON%' and
description not like '%In-Net%')
I need to incorporate the above SQL criteria into a Crystal XI report formula but it is NOT working, any ideas?? Below is my Crystal formula.
if {accumulator.accumtype} = 'Maxout' and
(not("*OON*" in {accumulator.description}) and
not("*In-Net*"in {accumulator.description}))
then {claimdetail.coinsuranceamt}