Title Create Contingent Values Workbook
Creates an excel workbook to review and modify contingent values defined by data, schema or existing values.
The target table must have at least one field field group.
License
Basic
CreateContingentValuesWorkbook (input_table, workbook, mode)
Parameter | Explanation | Data Type |
---|---|---|
input_table |
Dialog Reference
The table with field groups. |
GPTableView |
workbook |
Dialog Reference
The output Excel file containing information about field groups and contingent values. |
DEFile |
mode |
Dialog Reference
Defines from where the contingent values will be generated:
|
GPString |
CreateContingentValuesWorkbook example 1 (Python window)
Creates an excel workbook to review and modify contingent values defined by data, schema or existing values.
import arcpy
arcpy.udms.CreateContingentValuesWorkbook(
r"D:/data/UtilityNetwork.gdb\UtilityNetwork\UNDevice",
r"D:/data",
"DATA",
)
CreateContingentValuesWorkbook example 2 (stand-alone script)
Creates an excel workbook to review and modify contingent values defined by data, schema or existing values.
import arcpy
arcpy.udms.CreateContingentValuesWorkbook(
input_table=r"D:/data/UtilityNetwork.gdb\UtilityNetwork\UNDevice",
workbook=r"D:/data",
mode="DATA",
)