G Gary Ballance Sep 15, 2003 #1 I have the same question. Is there an easy way to change data in an entire spreadsheet from lower to uppercase?
I have the same question. Is there an easy way to change data in an entire spreadsheet from lower to uppercase?
J J.E. McGimpsey Sep 15, 2003 #2 Take a look at David McRitchie's Upper() macro: http://www.mvps.org/dmcritchie/excel/proper.htm#upper But PLEASE reconsider! ALL CAPS IS A PAIN IN THE NECK TO READ!
Take a look at David McRitchie's Upper() macro: http://www.mvps.org/dmcritchie/excel/proper.htm#upper But PLEASE reconsider! ALL CAPS IS A PAIN IN THE NECK TO READ!
D Don Guillett Sep 15, 2003 #3 try Sub ucaseall() For Each c In ActiveSheet.UsedRange c.Value = UCase(c) Next End Sub