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

Check Box - Select All

Status
Not open for further replies.

hncnsc

IS-IT--Management
Feb 11, 2008
2
US
I have a field that is populated by a check box set;
it contains 12 items. I need to either...

A. Select all of the checkbox items when the record is created.

B. Write a script that will check all the boxes.

I've played around with the script using Set Field. I can get it to select one item but not multiple items. If I use multiple Set Field script steps the second overrides the first.

Any help is appreciated!
 
The valuelist connected to the checkboxfield is a ¶ separated list.
Your SetField() should look something like:

SetField(yourField);
valueOne & ¶ &
valueTwo & ¶ &
valueThree & ¶ &
.......
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top