Notifications
Clear all
Topic starter
Like the title says, I want to capitalize the first letter of the first selection from a listbox and dropdown.
Here is the translation from one of the fields:
{CFMT(OBSNOW("HPI context"), "", "Context: ", "B", "
")}
Posted : July 13, 2015 6:33 am
I would use a combination of the toupper(string), sub(string), and insert(string) data symbols.
Posted : July 13, 2015 6:54 am
try toupper(sub(document.listbox,1,1))
Posted : July 13, 2015 7:06 am