IN operator in Crystal Report

crystal-reports

I was trying to filter the crystal report by using the IN operator like what we do in SQL. In crystal report, i was trying to do it the same way as something like this
({i_NonPfcIncDetStt.TeamCode} IN ('ABC','DEF')) but it's giving me error, "The ) is mising".

Any idea how can i do this in crystal report?

Best Answer

({i_NonPfcIncDetStt.TeamCode} IN ['ABC','DEF']) perhaps?
Related Topic