CF is limited to 3 contitions, but you can use OR in those expressions.
If you set Condition1 to Expression, you can use:
([Type] = "Full member") Or ([Type] = "Life member")
If that still doesn't work, open the table in design view, and see what kind
of field Type is. If it is a Number (using a combo to show the text), you
will need to put the correct numbers here instead of the text. And the
numbers don't go in quotes.
If you do end up needing more than 3 colors, and you are comfortable with
VBA code, you can set the BackColor of the text box in the Format event of
its section.

Signature
Allen Browne - Microsoft MVP. Perth, Western Australia
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.
>I have a text box in a report which highlights in colour current members in
>a list of past and present member names. I have six types of current
[quoted text clipped - 4 lines]
>
> thanks .. Roger
You need to include the field name each time.
if [Type]="Full member" Or [Type]="Partial Member" or [Type]="New Member"....
then
(Whatever you want to happen)
end if