Jan 7, 2004 #1 eja2000 Programmer Nov 30, 2003 209 NG as at now, all the month names are in Caps.... how can i format them to be initial Caps then the rest small letters? thx
as at now, all the month names are in Caps.... how can i format them to be initial Caps then the rest small letters? thx
Jan 7, 2004 #2 blom0344 Technical User Mar 20, 2002 3,441 NL Combine the BO functions Lower, Upper, Substr and Length to get this done: First establish the length of the string. Concatenate the first position of the string with the rest, like: =Upper(Substr(<string>,1,1))& Lower(Substr(<string>,2,(Length(<string>)-1))) T. Blom Information analyst tbl@shimano-eu.com Upvote 0 Downvote
Combine the BO functions Lower, Upper, Substr and Length to get this done: First establish the length of the string. Concatenate the first position of the string with the rest, like: =Upper(Substr(<string>,1,1))& Lower(Substr(<string>,2,(Length(<string>)-1))) T. Blom Information analyst tbl@shimano-eu.com