Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

CR9 Showing Message when No Data using formula

Status
Not open for further replies.

oublie

Programmer
Jun 7, 2000
53
GB
Hi,

For years i've been using CR6, now we have upgraded to CR9 and I've got a problem. On the report there is a suppressed message in the Page Header "There is not Data to Report Please change your Selection Criteria". This is suppressed with a formula to show the message when there is no data. This seems to have stopped working. does anyone know of a clever way of doing this other than {AUDIT.CLIENT_ID} > 0 where if the client_id has no value then the message will be shown? Any solutions or ideas would be greatly appreciated.
 
You can use the Alert functionality for this kind of thing.

Look for Create Alert in the Report menu.

Alternatively, if you want to continue your conditional suppression, try suppressing on:

Not (IsNull(Sum({Audit.Client_ID})) or
Sum({Audit.Client_ID}) = 0)

Naith
 
Thanks Naith,

I Tried alerts with no joy, but i'll have a go with your formula.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top