Skip to Content
Menu
This question has been flagged
1 Reply
812 Views

Hello, I would like to know how, through an automated action, I could convert a field to uppercase and have it saved this way in the database.


Avatar
Discard
Best Answer

Like this:


str(record.name).upper()   

or if you use the "Execute Python code" option

record['x_studio_name'] = str(record.name).upper()



Avatar
Discard
Related Posts Replies Views Activity
3
May 25
1821
1
Apr 25
1352
3
Sep 24
14273
0
Sep 24
1382
0
May 24
26