Answered
Combining data from two textboxes into one textbox
I'm using this calculation script:
event.value = this.getField("PREVO").value + " & " + this.getField("COPREVO").value;
is there a way to ensure that the & symbol doesn't appear when PREVO is blank? Or if I only have information in PREVO and not COPREVO?

