Select to view content in your preferred language

ArcGIS Pro Python

675
3
03-16-2020 10:33 PM
KalSsin
Regular Contributor
Hi~~~
How do you select multiple fields?
Only one field is selected.

I'd like to select three as shown in the picture.
0 Kudos
3 Replies
DanPatterson_Retired
MVP Emeritus

from the command line, you have to type in the field names, there is no multi-select capabilities

JoshuaBixby
MVP Esteemed Contributor

If you want to use a GUI to select multiple fields, just run the geoprocessing tool and use the dialog window that allows multiple field selection:

DrewFlater
Esri Regular Contributor

Multiple field names can be given in a Python list:

["FIeldA", "FieldB", "FieldC"]

0 Kudos