work with access check boxes in merge document

M

martymarks

I want to create a check box in a merge document with an access field as its
source. The check box is a yes/no value. Thus far I am only able to get a
True/False value to show in the merged document. I am after the check mark
graphic. Thanks. (e-mail address removed)
 
D

Doug Robbins - Word MVP

Grab them from the Insert>Symbol dialog in Word.

--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP
 
M

martymarks

I have got the check box graphic that way but I haven't figured out how to
merge the "check" when the value = yes.
 
P

Peter Jamieson

Insert the following nested fields in your document. Each pair of {} needs
to be the special field code braces that you can insert using ctrl-F9 - you
can't just type them. Change mybox to the name of your field and substitute
the appropriate symbols where I have typed <unchecked box character> and
<checked box character>.

{ IF "{ MERGEFIELD "mybox" }" = "False" "<unchecked box character>"
"<checked
box character>" }

This assumes that you are using Word 2002/2003/2007 and have not altered the
way it connects to Access. if you are using DDE (the default in Word
97/2000) or ODBC, then you need

{ IF "{ MERGEFIELD "mybox" }" = "0" "<unchecked box character>" "<checked
box character>" }

Or if for example you are just using a text field with Y and N for "True"
and "False", use

{ IF "{ MERGEFIELD "mybox" }" = "N" "<unchecked box character>" "<checked
box character>" }

Peter Jamieson
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top