G Guest Feb 18, 2005 #1 I'm just trying to make everything in my spreadsheet the same case. Is there an easy way to do this, like there is in Word?
I'm just trying to make everything in my spreadsheet the same case. Is there an easy way to do this, like there is in Word?
G Guest Feb 18, 2005 #2 Go into VBE and enter the following all in one line for each sht in this workbook.sheets:for each cl in sht.usedrange.cells:cl.value=ucase(cl.value):next:next replace ucase with lcase if you desire lowercase http://HelpExcel.com
Go into VBE and enter the following all in one line for each sht in this workbook.sheets:for each cl in sht.usedrange.cells:cl.value=ucase(cl.value):next:next replace ucase with lcase if you desire lowercase http://HelpExcel.com
G Guest Feb 18, 2005 #3 Remove the space I accidentally embedded between the word this and workbook... It should read thisworkbook
Remove the space I accidentally embedded between the word this and workbook... It should read thisworkbook
J JE McGimpsey Feb 18, 2005 #4 No, but take a look here: http://www.mvps.org/dmcritchie/excel/proper.htm#upper