Crystal XI with SQL database
I have the formula below in a report to act as a prompt to a provider to close a consumer based on various lapse times from a last service.
I now want to count how many records have been flagged as a total count and also to show what percentage of all of the current displayed records in the report are flagged with this text.
Can anyone show me what to do? I tried to put a grand summary in but it just gave me a number that is equal to all the records accessed I think.
Any help is appreciated!
if
(
{Consumer_Service_View.begin_date} <= DataDate-90 and
ucase({Employee_View.people_last_name}) = "ALZHEIMERS"
) OR
(
{Consumer_Service_View.begin_date} <= DataDate-365 and
ucase({Employee_View.people_last_name}) in ["RESPITE","OBRA"]
) OR
(
not(ucase({Employee_View.people_last_name}) in ["ALZHEIMERS","RESPITE","OBRA"]) and
{Consumer_Service_View.begin_date} <= DataDate-30
) then ToText ("CLOSE?") else ""
I have the formula below in a report to act as a prompt to a provider to close a consumer based on various lapse times from a last service.
I now want to count how many records have been flagged as a total count and also to show what percentage of all of the current displayed records in the report are flagged with this text.
Can anyone show me what to do? I tried to put a grand summary in but it just gave me a number that is equal to all the records accessed I think.
Any help is appreciated!
if
(
{Consumer_Service_View.begin_date} <= DataDate-90 and
ucase({Employee_View.people_last_name}) = "ALZHEIMERS"
) OR
(
{Consumer_Service_View.begin_date} <= DataDate-365 and
ucase({Employee_View.people_last_name}) in ["RESPITE","OBRA"]
) OR
(
not(ucase({Employee_View.people_last_name}) in ["ALZHEIMERS","RESPITE","OBRA"]) and
{Consumer_Service_View.begin_date} <= DataDate-30
) then ToText ("CLOSE?") else ""