Hello,I have an interesting situation, I have an interactive spreadsheet that has a clickbutton that will open outlook to email the form. It also creates a subject line to email based on fields in the pdf, I used the following code for that://Create a variable to hold the document objectvar oDoc = event.target;oDoc.mailDoc({bUI: true,cTo: "a@b.com",cSubject: Employee_Name.rawValue + ", " + Service_Area.rawValue + " ," + Employee_Number.rawValue + " ," + Dropdown1.rawValue}); What I'd like to do to extend that is make it so if one of...