TysonLPrice
Programmer
I'm trying to change a 8.5 Crystal report run from VB 6.0 to use multiple columns in a where clause. Current it uses:
rptExceptionsByGroupID;1.RejectionReason} = 'Bwc 100% Emr Cap-Groupable
in a string called strSelectionFormula like this:
.SelectionFormula = strSelectionFormula
I'm trying to change it to:
{rptExceptionsByGroupID;1.RejectionReason} in ( 'Bwc 100% Emr Cap-Groupable' ,'Canceled with BWC' )
The error message shows the string and than the text "The ) is missing"
Can I use the IN clause like that?
rptExceptionsByGroupID;1.RejectionReason} = 'Bwc 100% Emr Cap-Groupable
in a string called strSelectionFormula like this:
.SelectionFormula = strSelectionFormula
I'm trying to change it to:
{rptExceptionsByGroupID;1.RejectionReason} in ( 'Bwc 100% Emr Cap-Groupable' ,'Canceled with BWC' )
The error message shows the string and than the text "The ) is missing"
Can I use the IN clause like that?