I would like to change an entire field to proper case ( ALASKAJOE TO Alaskajoe)
I read the foxpro help portion about proper() command but didn't understand the STORE portion

Should this be excel I would create an new field. use =proper(field), copy, past values

There has to be an easier way

Thanks for you hel

Jo


ps-- I don't want to do just one record. I wand the entire field changed to proper case

RE: proper command help by anonymous

anonymous
Sat Apr 17 05:21:01 CDT 2004

You were probably confounded by the VFP example. Just use PROPER() as follows

REPLACE ALL Myfield with PROPER(Myfield) in Mytabl

where 'Myfield' is the name of the field you want to convert to proper case and 'Mytable' is the table which contains that field.

RE: proper command help by anonymous

anonymous
Sat Apr 17 20:41:02 CDT 2004

THANK YOU