Thank you! I got it to work.
Please explain what you mean by Personal.xls? I tried to enter Personal.xls
in help but did not obtain information and I haven't figured out how to
create it. I did not understand the "go down to the bottom and choose
Personal.xls instead of all workbooks"
Thank you for all the help!
Susan
Hi Susan,
For Proper there are two macros, you must install both.
The one you want to run is Proper_case which will
invoke the proper_case_inner macro.
If you want to run with a specific range instead of
a selection make up another macro.
sub proper_A1toB50()
call proper_case_inner(Range("A1:B50")
end sub
Look at the material immediately below the macros.
The macro themselves can be found in the webpage
http://www.mvps.org/dmcritchie/excel/proper.htm
the code may be copied better from (and may contain additional coding)
http://www.mvps.org/dmcritchie/excel/code/proper.txt
If their is a difference between the web page and the code,
please let me know.
---
HTH,
David McRitchie, Microsoft MVP - Excel [site changed Nov. 2001]
My Excel Pages:
http://www.mvps.org/dmcritchie/excel/excel.htm
Search Page:
http://www.mvps.org/dmcritchie/excel/search.htm
Thank you very much! I got the lower and upper to work. I
haven't got the proper to work yet but I figure I need to
study this some more first.
Susan
-----Original Message-----
Take a look at David McRitchie's Upper_Case macro, found
here:
http://www.mvps.org/dmcritchie/excel/proper.htm#upper
However, I'd convert to proper case (macro found on the
same page) -
it's far more readable.
I am working on address lists for mailing out juried
show
application. One list has text all in upper case.
Another
list has text in both upper and lower case. I would
like
to be consistent and convert text in xls file to upper
case only. I have found UPPER but it applies only to
formulas. Is there a way to convert all text in xls
file
to upper case?
Thanks for information!
Susan
.