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

Format and option group

Status
Not open for further replies.

terre

Technical User
Feb 2, 2003
97
AU
I have an option group which returns values 1,2,3,4.
I wish to represent this in a report, with a tick representing the value returned, in a column
n = 1 ,s = 2,o = 3, u = 4 as in uploaded pic.

This is fine if the report has only one record, however I get multiple ticks in a row when there are several records.

Any suggestions?
 
ok...SORTED
Thanks to MajP ...in another post I cruised at random I guess.

In text boxes, Control Source is

=IIf([1e]="1","P","") for n
=IIf([1e]="2","P","") for s
=IIf([1e]="3","P","") for o
=IIf([1e]="4","P","") for u

Wingdings 2 Font
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top