开发者

Crystal Report: Is PreviousNull prints incorrect data

Some days back i posted a question in SO at Crystal Report: Display 0.00 for duplicate values

The question was to remove duplicate values and the report should display 0.00 instead. It was very kind of @adatapost that he posted a solution.

Now,it is throwing very irritating and awkward problem.

The 7th record is showing up 0.00

Hence, if the record was like before as

400.00

400.00

400.00

500.00

500.00

500.00

600.00

600.00

600.00

After that formula applied is showing something like

400.00

0.00

0.0开发者_JS百科0

500.00

0.00

0.00

0.00 (THIS IS INCORRECT-- IT SHOULD BE 600.00)

0.00

0.00

Can you please throw some light in this issue? I appreciate your inputs & efforts.

thanks!


Create a formula named 'Amount'.

Add the following to the formula:

If PreviousIsNull ({table.field}) Or Previous ({table.field}) <> {table.field} Then
    {table.field}
Else
    0

Use this formula instead of the database field.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜