MontyBurns
Programmer
Hi,
In a form this would be easy for me, but i've not done very much report coding so would really appreciate some help on this.
My report has, for each record, 4 rows of fields in 3 columns. I.e. sort of like a grid containing 12 cells. Each row consists of a Date/Time, a checkbox and a text cell.
If the checkbox field is true, I don't want that row to display. How can I do this? There doesn't seem to be a visibility property I can set.
I'll try and illustrate my layout here, but it might get screwed up by wrapping:
RecID Topic Name Date Complete? PersonName
01 Stuff Paralegal: 1/1/01 Yes Barny
Inputter: 2/2/02 No Burns
Lawyer: 1/5/01 No Smithers
IO: 1/5/01 No Homer
02 More Stuff ....
I would have thought that something like this would work:
If Me!chkComplete = True Then
Me!txtDate.visible = False
Me!chkComplete.visible = False
Me!txtName.visible = False
End If
Any ideas?
Thanks,
Burns
In a form this would be easy for me, but i've not done very much report coding so would really appreciate some help on this.
My report has, for each record, 4 rows of fields in 3 columns. I.e. sort of like a grid containing 12 cells. Each row consists of a Date/Time, a checkbox and a text cell.
If the checkbox field is true, I don't want that row to display. How can I do this? There doesn't seem to be a visibility property I can set.
I'll try and illustrate my layout here, but it might get screwed up by wrapping:
RecID Topic Name Date Complete? PersonName
01 Stuff Paralegal: 1/1/01 Yes Barny
Inputter: 2/2/02 No Burns
Lawyer: 1/5/01 No Smithers
IO: 1/5/01 No Homer
02 More Stuff ....
I would have thought that something like this would work:
If Me!chkComplete = True Then
Me!txtDate.visible = False
Me!chkComplete.visible = False
Me!txtName.visible = False
End If
Any ideas?
Thanks,
Burns