I have found that, in general, putting a full select statement in a SQL expression doesn't work. SQL expressions are added to the select list of the SQL that Crystal sends to the database. So, if your database doesn't support structures like:
Select
Field1,
Field2,
(Select Count(*)
from TableB) as countit
from TableA
Then the SQL Expression won't work.
-Dell
A computer only does what you actually told it to do - not what you thought you told it to do.