Two tables--EmployeeAttributes has codes for Attributes by Employee, Attributes has the list of Attributes:
Tables: EmployeeAttributes Attributes
Fields: AttributeCode---------AttributeCode
Employee AttributeName
Each page of the report is for 1 Employee, and I want to show ALL the possible choices from the Attributes table, then put a checkmark by those Attributes that match EmployeeAttributes.
So I created a textbox with a list of all the attributes, then put 2 checkboxes next to each one. The format goes like this:
Group 1 Employee [Firstname] [Lastname]
Detail a
[CheckedBox: If Attribute not= 'Blackberry' then suppress] [UncheckedBox: If Attribute='Blackberry' then suppress] [Textbox: Blackberry]
Detail b
[CheckedBox: If Attribute not= 'Cell Phone' then suppress] [UncheckedBox: If Attribute='Cell Phone' then suppress] [Textbox: 'Cell Phone']
This produces:
Checkedbox 'Blackberry'
Uncheckedbox 'Cell Phone'
Uncheckedbox 'Blackberry'
Checkedbox 'Cell Phone'
It should say:
Checkedbox 'Blackberry'
Checkedbox 'Cell Phone'
I've tried Suppress if Attribute=Previous(Attribute) but that doesn't work.
Thanks
Tables: EmployeeAttributes Attributes
Fields: AttributeCode---------AttributeCode
Employee AttributeName
Each page of the report is for 1 Employee, and I want to show ALL the possible choices from the Attributes table, then put a checkmark by those Attributes that match EmployeeAttributes.
So I created a textbox with a list of all the attributes, then put 2 checkboxes next to each one. The format goes like this:
Group 1 Employee [Firstname] [Lastname]
Detail a
[CheckedBox: If Attribute not= 'Blackberry' then suppress] [UncheckedBox: If Attribute='Blackberry' then suppress] [Textbox: Blackberry]
Detail b
[CheckedBox: If Attribute not= 'Cell Phone' then suppress] [UncheckedBox: If Attribute='Cell Phone' then suppress] [Textbox: 'Cell Phone']
This produces:
Checkedbox 'Blackberry'
Uncheckedbox 'Cell Phone'
Uncheckedbox 'Blackberry'
Checkedbox 'Cell Phone'
It should say:
Checkedbox 'Blackberry'
Checkedbox 'Cell Phone'
I've tried Suppress if Attribute=Previous(Attribute) but that doesn't work.
Thanks