Hi Howard,
You don't need the Submitted field, because you can always generate your
text string from the other fields as and when needed, typically with a
calculated field in a query or an expression in a textbox in a report.
Assuming the fields are called ByPhone, ByFax and ByEmail, it would be
like this:
Calculated field in query:
Submitted: IIF([ByPhone], "Phone ", "") & IIF([ByFax], "Fax ", "") &
IIF([ByEmail], "Email", "")
Expression:
=IIF([ByPhone], "Phone ", "") & IIF([ByFax], "Fax ", "") &
IIF([ByEmail], "Email", "")
>Hi,
>I have three boolean (yes/no) fields in my table to indicate how an order
[quoted text clipped - 6 lines]
>
>Howard
--
John Nurick [Microsoft Access MVP]
Please respond in the newgroup and not by email.
hfreedman - 07 Mar 2006 20:40 GMT
Hi John,
Great advise. Worked perfectly as a calculated field in my queries. Thanks
for everything. Much appreciated!
Howard Freedman
> Hi Howard,
>
[quoted text clipped - 30 lines]
>
> Please respond in the newgroup and not by email.