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

Datawindows... PB 9

Status
Not open for further replies.

Iceman709

Programmer
Jul 3, 2012
2
CA
Hi..

I have a question regarding datawindows in version PB9.

I am creating a report which will print off employee information.

Example.. I am running a report wide open and it returns 25 employees.

For each employee, I would like to have a section on the report for Employee Notes, but only if notes exist for that employee.

When the report is generated, is there a way I can tell a column, if your value = '' or NUll for this employee, set the visibility to false, otherwise, visibility to true?

Any suggestions.

Thanks!

 
Use an expression on the visible property of the column in the datawindow which makes up the report. Something like:
Code:
 If(IsNull(mycol),0,mycol = '',0,1))

Matt

"Nature forges everything on the anvil of time"
 
mbalent.. Excellent!
Works great.

Thanks so much for your help.

Cheers!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top