beatlejus Member² Jun 25, 2003 #1 Hi, is it possible to export data to Excel with changing all upper case in lower case or better using an Excel function to convert all upper case in first letter upper and the rest of the statement lower case? Rgds, Norbert ------------------ -- Rgds, Norbert
Hi, is it possible to export data to Excel with changing all upper case in lower case or better using an Excel function to convert all upper case in first letter upper and the rest of the statement lower case? Rgds, Norbert ------------------ -- Rgds, Norbert
Marco Kalter Administrator Staff member Jun 25, 2003 #1 The only thing I can think of is to use the InitCap SQL function. For example: Code: select deptno, initcap(dname) as dname, initcap(loc) as loc from dept order by deptno Click to expand... ------------------ Marco Kalter Allround Automations
The only thing I can think of is to use the InitCap SQL function. For example: Code: select deptno, initcap(dname) as dname, initcap(loc) as loc from dept order by deptno Click to expand... ------------------ Marco Kalter Allround Automations
beatlejus Member² Jun 26, 2003 #1 Thanks a lot, that's exactly what I'm looking for. ------------------ -- Rgds, Norbert