• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Export Picklist to TXT/Excelk

New Here ,
Aug 11, 2021 Aug 11, 2021

Copy link to clipboard

Copied

Is there a way to export the choices from a picklist within an Adobe form? 

We inherited a from form a customer and need to make bunch of changes to the wording of the product list. We would like to export to a TXT or Excel file to make the change before we update the live form. 

Thank you for your time. 

 

 

TOPICS
How to , PDF forms

Views

123

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Aug 11, 2021 Aug 11, 2021

Copy link to clipboard

Copied

LATEST

The easiest way is to export it to the JS Console, and then copy it from there.

You can use this script to achieve that:

 

var f = this.getField("ENTER FIELD NAME HERE");
for (var i=0; i<f.numItems; i++) {
	console.println(f.getItemAt(i, false));
}

 

If the items also have export values you can get those as well, by duplicating the console.println line and changing false to true in it.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines