C.R.8.5 - How can I default a Running Total Summary field to display a Zero when it has a NULL value? I have several Running Total fields that display as a Blank in the group footer if the summary value is not 1 or greater. The Running Total field uses the Evaluate, Use of Formula option.
The following Running Total formula is designed to assign a value of 1 if the named formula has a value of 1 or more and either is the last record for the ID or is the last record on file. The R.T. formula used is:
{@DX_SA_ADM_PRIM} >= 1 and
(
{ss_history_diagnosis.PATID} <> next(
{ss_history_diagnosis.PATID} )
or
onlastrecord
)
Is there a way to rewrite this formula using correct syntax to default it to Zero if it has a NULL value? Or is there a report or field property that I can set to default all NULLS to Zero?
The following Running Total formula is designed to assign a value of 1 if the named formula has a value of 1 or more and either is the last record for the ID or is the last record on file. The R.T. formula used is:
{@DX_SA_ADM_PRIM} >= 1 and
(
{ss_history_diagnosis.PATID} <> next(
{ss_history_diagnosis.PATID} )
or
onlastrecord
)
Is there a way to rewrite this formula using correct syntax to default it to Zero if it has a NULL value? Or is there a report or field property that I can set to default all NULLS to Zero?