|
#1
|
|||
|
|||
![]()
Is there a way to suppress a field with no data?
I'm working with an XDF which pulls in Address information. For those addresses with two lines, there is a line break between Field("Addr1") and Field("Addr2"). Some addresses have two lines, some only one. Is there a way to suppress when the Addr2 field is empty?
__________________
Lisa B. FusionPro VDP Creator 10.0.16 Adobe Acrobat Pro DC 2018 Mac OS X 10.13.6 (High Sierra) |
#2
|
||||
|
||||
![]()
Lisa,
The easy way to do it is in the rule pulling the XDF data for the address, return the data validating the existence of Addr2 and use tags for format control: Quote:
__________________
Richard A. Lewis, Jr. Learning Development Manager | MarcomCentral® a Ricoh Company |
#3
|
|||
|
|||
![]()
Thanks for the response, Rich.
I think I might be using old code for XDF because my rule is set up in a way where I'm not sure where to add this. Here is my code: Code:
returnStr = ''; if(FusionPro.Composition.isPreview == true || FusionPro.inValidation == true) { Rule("OnJobStart"); } numRecsExtDF = externalDF.recordCount; for (recordWalker=1; recordWalker <= numRecsExtDF; recordWalker++) { if (externalDF.GetFieldValue(recordWalker, 'LocationCity') == Field("Address")) { if (Field("Address") =="") { return ""; } else { returnStr += externalDF.GetFieldValue(recordWalker, 'LocationAddress'); returnStr += externalDF.GetFieldValue(recordWalker, 'LocationAddress2'); returnStr +='<br>' returnStr += externalDF.GetFieldValue(recordWalker, 'LocationCity'); returnStr += ', '; returnStr += externalDF.GetFieldValue(recordWalker, 'LocationState'); returnStr += ' '; returnStr += externalDF.GetFieldValue(recordWalker, 'LocationZip'); } } } return returnStr;
__________________
Lisa B. FusionPro VDP Creator 10.0.16 Adobe Acrobat Pro DC 2018 Mac OS X 10.13.6 (High Sierra) |
#4
|
||||
|
||||
![]() Quote:
Quote:
Quote:
Are you sure that the code you posted is what's generating the output you want to change? ![]()
__________________
Dan Korn FusionPro Developer / JavaScript Guru / Forum Moderator PTI Marketing Technologies | Printable | MarcomCentral I am a not a Support engineer, and this forum is not a substitute for Support. My participation on this forum is primarily as a fellow user (and a forum moderator). I am happy to provide help and answers to questions when I can; however, there is no guarantee that I, or anyone else on this forum, will be able to answer all questions or fix any problems. If I ask for files to clarify an issue, I might not be able to look at them personally. I am not able to answer private messages, emails, or phone calls unless they go through proper Support channels. Please direct any sales or pricing questions to your salesperson or inquiries@marcom.com. Complex template-building questions, as well as all installation and font questions or problems, should be directed to FusionProSupport@marcom.com. Paid consulting work may be required to fulfill your template-building needs. This is a publicly viewable forum. Please DO NOT post fonts, or other proprietary content, to this forum. Also, please DO NOT post any "live" data with real names, addresses, or any other personal, private, or confidential data. Please include the specific versions of FusionPro, Acrobat, and your operating system in any problem reports or help requests. I recommend putting this information in your forum signature. Please also check your composition log (.msg) file for relevant error or warning messages. Please post questions specific to the MarcomCentral Enterprise and Web-to-Print applications in the MarcomCentral forum. Click here to request access. Or contact your Business Relationship Manager (BRM/CPM) for assistance. Please direct any questions specific to EFI's Digital StoreFront (DSF) to EFI support. How To Ask Questions The Smart Way The correct spellings are JavaScript, FusionPro, and MarcomCentral (each with two capital letters and no spaces). Acceptable abbreviations are JS, FP, and MC (or MCC). There is no "S" at the end of "Expression" or "Printable"! The name of the product is FusionPro, not "Fusion". "Java" is not is not the same as JavaScript. Check out the JavaScript Guide and JavaScript Reference! FusionPro 8.0 and newer use JavaScript 1.7. Older versions use JavaScript 1.5. return "KbwbTdsjqu!spdlt\"".replace(/./g,function(w){return String.fromCharCode(w.charCodeAt()-1)}); ![]() |
#5
|
||||
|
||||
![]()
The link below has an example job. Here is the JS rule for the Address Info:
Quote:
__________________
Richard A. Lewis, Jr. Learning Development Manager | MarcomCentral® a Ricoh Company |
#6
|
|||
|
|||
![]()
Thanks Rich.
The example job really helped! Got this working now.
__________________
Lisa B. FusionPro VDP Creator 10.0.16 Adobe Acrobat Pro DC 2018 Mac OS X 10.13.6 (High Sierra) |
![]() |
Thread Tools | Search this Thread |
Display Modes | |
|
|