Madawc
I have created a formula called @Address that has the following split function in it.
Local StringVar str;
Local StringVar Array add;
Local StringVar address1:="";
Local NumberVar n;
str := {tblTest.Address1};
add := Split(str," ", n+1);
If Ubound(add) > n then
address1 := add[Ubound(add)];
address1;
How do I set the results of this array to have the first letters in uppercase and the remaining letters in lowercase?