I have combo boxes that I want to set up so that if the box still says "select" that it will not print when i print the form. Is this possible?
Try this in the "Custom Validation Script"
if (event.value == "Select"){
event.target.display = display.noPrint
} else {
event.target.display = display.visible
}
Change "Select" to match whatever your value is in the combobox.
awesome! that worked perfectly thanks so much!