I currently have the following formula passing a date variable to a crystal report. Here is the code for that:
rptFollowUp.SelectionFormula = "{CAO.DateReceived} in Date(" & Left(strControl, 4) & "," & Mid(strControl, 5, 2) & "," & Right(strControl, 2) & " to Date(" & Left(strControl2, 4) & ", " & Mid(strControl2, 5, 2) & "," & Right(strControl2, 2) & ""
Now I want to add another variable to this selection formula from another table. I want to add this formula rptFollowUp.SelectionFormula = "{CAOActions.Followcheck} = " & "'x'"
How would i go about adding this string to the current selectionfomula. Appreciate any help thanks
JPBinary
MCSE, MCSA
rptFollowUp.SelectionFormula = "{CAO.DateReceived} in Date(" & Left(strControl, 4) & "," & Mid(strControl, 5, 2) & "," & Right(strControl, 2) & " to Date(" & Left(strControl2, 4) & ", " & Mid(strControl2, 5, 2) & "," & Right(strControl2, 2) & ""
Now I want to add another variable to this selection formula from another table. I want to add this formula rptFollowUp.SelectionFormula = "{CAOActions.Followcheck} = " & "'x'"
How would i go about adding this string to the current selectionfomula. Appreciate any help thanks
JPBinary
MCSE, MCSA