Looking for a Panorama X function

When I add a new field in a procedure:

AddField “myCurrency”
Field myCurrency
FieldType “float”

I would also like to add a statement to define the output pattern of that field:

SetOutputPattern “#,.##” // SetOutputPattern is the fictitious name of the function I’m looking for.

Does Panorama X 10.2 have a function that can to this?

Try…

setfieldproperties "myCurrency",initializedictionary("OUTPUTPATTERN","#,.##")

Thanks Gary! You made my day -:slight_smile: