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!

Cross Tab - Horizontal Group Field 1

Status
Not open for further replies.

saran26

Programmer
May 20, 2008
173
US
Hi All,

Crystal reports Product Version 11.1

I have a cross tab in my report with Verdict as a horizontal group field and the count of number of tests as the summary field.

The verdict may and may not have any values.

Possible values are

Pass
Fail
Cancelled

and with out any values.

I tried to change the display using the formula to list the ones with out any values as "Not Executed"

formual
if ClearQuest.Verdict = "" then "Not Executed"

But it is not working, please help me out.

Thanks
Saran
 
Modify the formula:
Code:
 if IsNull ({ClearQuest.Verdict})
or {ClearQuest.Verdict} = "" 
then "Not Executed"
Nulls stop everything, unless first tested for with IsNull.

[yinyang] Madawc Williams (East Anglia, UK). Using Windows XP & Crystal 10 [yinyang]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top