Change field to Uppercase

km4504
Advocate
Advocate

Change field to Uppercase

km4504
Advocate
Advocate

I am trying to find the right string to change the date field from 09 Jul 24 to 09 JUL 24. I would like the month to be all caps. Is this possible. Using 2024.

If my reply was helpful, please give a Kudos or click the Accept as Solution button below (or both).
0 Likes
Reply
Accepted solutions (1)
453 Views
4 Replies
Replies (4)

vladimir_michl
Advisor
Advisor
Accepted solution

You can do that by entering the proper formatting string - e.g.:

 

%<\AcVar date \f "d. MMMM yyyy h:mm %tc1">%

%<\AcVar date \f "d. MMM yyyy h:mm %tc1">%

 

Vladimir Michl, www.arkance.world  -  www.cadforum.cz

 

pendean
Community Legend
Community Legend

Or something like

 

$(upper, $(edtime, 0, MONTH YYYY))

 

 

and from HELP in the program

https://help.autodesk.com/view/ACD/2025/ENU/index.html?guid=GUID-F94A885A-4DA2-432B-AC1A-EB49CC6C1C7...

km4504
Advocate
Advocate
It worked, I just needed to change the day to two digits and the year to 2 and no time is needed.
If my reply was helpful, please give a Kudos or click the Accept as Solution button below (or both).

km4504
Advocate
Advocate

I had to modify the string, but this is the actual format I needed. So I'll give you a like for pointing me in the right direction.

$(upper,$(edtime, $(getvar,date),DD MON YY))

If my reply was helpful, please give a Kudos or click the Accept as Solution button below (or both).
0 Likes