Acctually, you can use propcase like this to solve your problem propcase(lowcase(col),'') BUT, you must use it in an SQL proc sql; create table y as select namn, propcase(lowcase(namn), '') as PROPCASE from x ; quit; propcase works differentially inte proc sql and data step
... View more