Paul,
I did finally receive the workbook.
My SpamKiller on my home PC deleted it and I couldn't rescue it.
I'm posting the explanation in the newsgroup to close the thread and
so that it might be of use to someone searching for something similar in
the Google archives.
Anyway, to your workbook......
I know see what you were trying to do.
I'll just take one of the ComboBoxes as an example.
What you did was place the box to cover a cell and wanted your
selection to print, but not the arrow on the ComboBox.
That can't be done.
You had the linked cell directly underneath the ComboBox which
gave you the list number of the selection.
What I did on the workbook that I sent back to you..........
Inserted a column in front of the range where you were populating
the ComboBox from and numbered that column consecutively starting
with one.
I then named the numbered column and your range of names as "req".
I changed your Linked Cell to a cell directly above that range (Sheet2!A1
to be exact).
In the cell directly underneath the ComboBox, I entered the following
formula:
=VLOOKUP(Sheet2!A1,req,4,FALSE)
Lastly, I set the properties of the ComboBox to NOT print.
What the above does:
When you make a selection from the ComboBox, your choice number
will go into Sheet2!A1. The VLookup in the cell under the box will
look up that number in the range named "req" and return whatever is
4 columns to the right of that found number which just so happens to be
the name that was selected in the ComboBox.
You won't see this when you're looking at the workbook but when you
print, the ComboBox itself won't print, but the name in that cell underneath
will print. You can format that underlying cell as desired.
Some extra notes.....
Had you used a ComboBox from the "Controls Toolbox", the Linked cell
would have given you the actual text of the selection and not a number
(which
might have been easier to work with).
Another option would be to run a macro each time the ComboBox was changed
to populate that underlying cell with the value of the ComboBox.
Hopefully, what I gave you, should work well for you.
If you need any more help with this, please post back in the ng.
John