Okay I've been starting out small with custom scripts for formatting and calculations but I need a hand with this one I can't find an example of something like it to work with. I have a form field that is formatted to show nothing unless certain other fields read a specific thing or number. I need to make a if A, B, & C do not equal "this", "this", or "this" event.value = event.value + " ft" and will this work with words in the checked fields rather than just numbers? This is what I've been working with that sorta works but not quite so help would be appreciated.
if(this.getField("Base1").value != blue
{
event.value = ""
}
else
event.value = event.value + " ft."
if(event.value <= 0)
{
event.value = ""
}
George Kaiser