TechUser23
IS-IT--Management
My current formula:
stringVar sProcedureDescription := LEFT({ParadigmReceipt.Description}, 200);
IF NOT ISNULL({ParadigmReceipt.CPTCode}) THEN
sProcedureDescription := sProcedureDescription + " (" + {ParadigmReceipt.CPTCode};
IF NOT ISNULL({ParadigmReceipt.CPTCode}) AND NOT ISNULL({ParadigmReceipt.Modifier1}) THEN
sProcedureDescription := sProcedureDescription + " " + {ParadigmReceipt.Modifier1};
IF NOT ISNULL({ParadigmReceipt.CPTCode}) AND NOT ISNULL({ParadigmReceipt.Modifier2}) THEN
sProcedureDescription := sProcedureDescription + "," + {ParadigmReceipt.Modifier2};
IF NOT ISNULL({ParadigmReceipt.CPTCode}) AND NOT ISNULL({ParadigmReceipt.Modifier3}) THEN
sProcedureDescription := sProcedureDescription + "," + {ParadigmReceipt.Modifier3};
IF NOT ISNULL({ParadigmReceipt.CPTCode}) AND NOT ISNULL({ParadigmReceipt.Modifier4}) THEN
sProcedureDescription := sProcedureDescription + "," + {ParadigmReceipt.Modifier4};
IF NOT ISNULL({ParadigmReceipt.CPTCode}) THEN
sProcedureDescription := sProcedureDescription + ")";
sProcedureDescription
What my client needs is to suppress the description within this current formula. Im not a crystal report writer, so Im asking someone here for help.
stringVar sProcedureDescription := LEFT({ParadigmReceipt.Description}, 200);
IF NOT ISNULL({ParadigmReceipt.CPTCode}) THEN
sProcedureDescription := sProcedureDescription + " (" + {ParadigmReceipt.CPTCode};
IF NOT ISNULL({ParadigmReceipt.CPTCode}) AND NOT ISNULL({ParadigmReceipt.Modifier1}) THEN
sProcedureDescription := sProcedureDescription + " " + {ParadigmReceipt.Modifier1};
IF NOT ISNULL({ParadigmReceipt.CPTCode}) AND NOT ISNULL({ParadigmReceipt.Modifier2}) THEN
sProcedureDescription := sProcedureDescription + "," + {ParadigmReceipt.Modifier2};
IF NOT ISNULL({ParadigmReceipt.CPTCode}) AND NOT ISNULL({ParadigmReceipt.Modifier3}) THEN
sProcedureDescription := sProcedureDescription + "," + {ParadigmReceipt.Modifier3};
IF NOT ISNULL({ParadigmReceipt.CPTCode}) AND NOT ISNULL({ParadigmReceipt.Modifier4}) THEN
sProcedureDescription := sProcedureDescription + "," + {ParadigmReceipt.Modifier4};
IF NOT ISNULL({ParadigmReceipt.CPTCode}) THEN
sProcedureDescription := sProcedureDescription + ")";
sProcedureDescription
What my client needs is to suppress the description within this current formula. Im not a crystal report writer, so Im asking someone here for help.