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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Issue with crystal reports 2008

Status
Not open for further replies.

farrukhkamal

Systems Engineer
Sep 3, 2017
1
0
0
QA
Hi All

There is any which i am facing in crystal report for replacing the link with the table.

The screenshot has been attached.

I want that if there is any data which needs to be appear on table then the comment won't come and if there is no data for the table then the comments appears only.

Please help me..
 
 http://files.engineering.com/getfile.aspx?folder=2321288c-2e4b-431d-a074-c04e1e888e90&file=12.JPG
Use a left join from the first table (A) to the table (B) that you want to generate the comment if there is no data. Then create a formula:

If isnull({B.CaseID}) then
"No Results"

If headings appear when there is no data, suppress them with a formatting formula:

Isnull({B.CaseID})

Format sections to "suppress blank sections" in the section editor.

-LB

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top