I am using Crystal Reports XI.
I have a formula which is generating a type and the report is grouped on type. The problem I am running into is if the item has been counted in one type, it is not being counted in another type even though it is possible. Here is what is making up my types and grouping.
if {sspmgntactivityreportbymonth.type_rtk_of_credentialinggroupinfo}in["SSP CAQH Enrollment","SSP Government Enrollment",
"SSP Individual Enrollment","SSP IPA Enrollment"]
and {sspmgntactivityreportbymonth.credentialing_startdate_of_credentialing} in YearToDate
then "New Provider Work Items"
else
if {sspmgntactivityreportbymonth.type_rtk_of_credentialinggroupinfo}="SSP Change Form"
and {sspmgntactivityreportbymonth.credentialing_startdate_of_credentialing} in YearToDate then "Change Requests"
else
if {sspmgntactivityreportbymonth.type_rtk_of_credentialinggroupinfo}="SSP Provider Setup"
and {sspmgntactivityreportbymonth.credentialing_startdate_of_credentialing} in YearToDate then "New Providers"
else
if {sspmgntactivityreportbymonth.type_rtk_of_credentialinggroupinfo}in["SSP CF_Add Location","SSP CF_Address Change",
"SSP CF_Name Change","SSP CF_Other","SSP CF_TAX ID ADD","SSP CF_Tax ID Change","SSP Group CF_Add Location",
"SSP Group CF_Address Change","SSP Group CF_Other","SSP Group CF_Tax ID Change","SSP CF_Stop Enrollment",
"SSP CF_Termination"] and {sspmgntactivityreportbymonth.credentialing_startdate_of_credentialing} in YearToDate
then "Change Work Items"
else
if {sspmgntactivityreportbymonth.type_rtk_of_credentialinggroupinfo}in["SSP CF_Add Payor","SSP Group CF_Add Payor"]
and {sspmgntactivityreportbymonth.credentialing_startdate_of_credentialing} in YearToDate
then "Payor Add's"
else
if {sspmgntactivityreportbymonth.type_rtk_of_credentialinggroupinfo}="SSP Converted"
and {sspmgntactivityreportbymonth.credentialing_startdate_of_credentialing} in YearToDate
then "Converted"
else
if {sspmgntactivityreportbymonth.presentdate_asof_of_credentialingassignments} in YearToDate then "Payor approvals"
else "Ignore"
The problem iw mainly with the Payor Approvals. As an item gets approved, a date gets entered. It could be any of the type_rtk_of_credentialinggroupinfo's listed. How can I get these to count even if it has been counted in a prior type or grouping.
Thank you,
I have a formula which is generating a type and the report is grouped on type. The problem I am running into is if the item has been counted in one type, it is not being counted in another type even though it is possible. Here is what is making up my types and grouping.
if {sspmgntactivityreportbymonth.type_rtk_of_credentialinggroupinfo}in["SSP CAQH Enrollment","SSP Government Enrollment",
"SSP Individual Enrollment","SSP IPA Enrollment"]
and {sspmgntactivityreportbymonth.credentialing_startdate_of_credentialing} in YearToDate
then "New Provider Work Items"
else
if {sspmgntactivityreportbymonth.type_rtk_of_credentialinggroupinfo}="SSP Change Form"
and {sspmgntactivityreportbymonth.credentialing_startdate_of_credentialing} in YearToDate then "Change Requests"
else
if {sspmgntactivityreportbymonth.type_rtk_of_credentialinggroupinfo}="SSP Provider Setup"
and {sspmgntactivityreportbymonth.credentialing_startdate_of_credentialing} in YearToDate then "New Providers"
else
if {sspmgntactivityreportbymonth.type_rtk_of_credentialinggroupinfo}in["SSP CF_Add Location","SSP CF_Address Change",
"SSP CF_Name Change","SSP CF_Other","SSP CF_TAX ID ADD","SSP CF_Tax ID Change","SSP Group CF_Add Location",
"SSP Group CF_Address Change","SSP Group CF_Other","SSP Group CF_Tax ID Change","SSP CF_Stop Enrollment",
"SSP CF_Termination"] and {sspmgntactivityreportbymonth.credentialing_startdate_of_credentialing} in YearToDate
then "Change Work Items"
else
if {sspmgntactivityreportbymonth.type_rtk_of_credentialinggroupinfo}in["SSP CF_Add Payor","SSP Group CF_Add Payor"]
and {sspmgntactivityreportbymonth.credentialing_startdate_of_credentialing} in YearToDate
then "Payor Add's"
else
if {sspmgntactivityreportbymonth.type_rtk_of_credentialinggroupinfo}="SSP Converted"
and {sspmgntactivityreportbymonth.credentialing_startdate_of_credentialing} in YearToDate
then "Converted"
else
if {sspmgntactivityreportbymonth.presentdate_asof_of_credentialingassignments} in YearToDate then "Payor approvals"
else "Ignore"
The problem iw mainly with the Payor Approvals. As an item gets approved, a date gets entered. It could be any of the type_rtk_of_credentialinggroupinfo's listed. How can I get these to count even if it has been counted in a prior type or grouping.
Thank you,