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

Crystal, VB Formula help

Status
Not open for further replies.

B1naryPro

IS-IT--Management
Jan 20, 2002
114
US
I have a visual basic front end with a check box, and when that user checks it, it goes out to the sql database and puts an "x" in that field. if that check box is checked i want all associated records to be shown in the report. So for instance i want to have 7 other fields shown in the report if that check box is checked(equal to "x"), but if it's not then i don't want to see it.

fldFirstName FldLastName fldCheck
J Smith x

no record no record no check

thanks for the help

JPBinary
MCSE, MCSA
 
I think you could try in your record selection:

{table.fldCheck} = "x"

Or, alternatively, you could try:

Not isnull({table.fldCheck})

-LB
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top