Page 1 of 1

Report summary message

Posted: Tue Aug 04, 2015 10:08 am
by Martin
On standard data band variable print out numerical values. Normally values are grater then 0 or equal to 0. In some cases some value can be smaller than 0 (negative number).

I would like to create some condition which print out notification text at the end of report in situation when at least one value in data band is smaller than 0.

Please give some help on which direction looking for solution!

Thank you.

Re: Report summary message

Posted: Wed Aug 05, 2015 4:05 am
by Jan
Hello Martin,

You can use following expression in Conditions of the ReportSummaryBand:

Code: Select all

Totals.Sum(Products, Products.UnitsInStock < 0 ? 1: 0) == 0
Also you need set Component Is Enabled check box to false.

Please check attached image.

Please contact us if you have any additional questions!

Thank you.