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!

Only show if check list is complete

Status
Not open for further replies.

Fadius

IS-IT--Management
Jul 25, 2001
139
US
I have a report grouped by Person, then by checklist type. I only want to see data on providers and checklists which have unchecked items. (have the unchecked items display)

So if John Doe has no unchecked items on any of his assigned checklists, John Doe should not show up.

If John Doe has only one checklist with unchecked items, John Doe will show up with only that checklist along with the items.

I can get all the people to show, with all there checklists under them and I can get it so only the items that are unchecked display, but how do I accomplish what I trying to do?

It may be that is the Friday before the Holiday weekend, but for some reason I cannot picture how to do this.
 
What value do they have if they are "unchecked"? Are they null or blank? If so, I think you just need a record selection formula like this:

(
isnull({table.checkedornot}) or
{table.checkedornot} = ""
)

-LB
 
It is a check box, true or false. If all items are true, then I dont want the person to show or the checklist or both if every checklist has all items on a checlists marked as true.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top