Hi guys,
I needed to add an expression to the field in an SSRS report, basically I want it to display the number of trainees in the stored procedure query where their status is null.
So normally in T-SQL id just do:
SELECT COUNT(DISTINCT(TRAINEEID))
FROM #ATI
WHERE STATUSCHANGEREQUEST IS NULL
I just need to do that in an SSRS expression, is that do-able?
As the stored procedure pulls a row per trainee.
Thanks for your help in advance
Regards,
Aisha