Skip navigation
nepperso
Currently Being Moderated

Combo Box if "word" do not print.

Jul 24, 2012 7:42 AM

Tags: #box #combo #printed_output

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?

 
Replies
  • Currently Being Moderated
    Jul 24, 2012 8:16 AM   in reply to nepperso

    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.

     
    |
    Mark as:

More Like This

  • Retrieving data ...

Bookmarked By (0)

Answers + Points = Status

  • 10 points awarded for Correct Answers
  • 5 points awarded for Helpful Answers
  • 10,000+ points
  • 1,001-10,000 points
  • 501-1,000 points
  • 5-500 points