Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Monique
 
Posts: n/a
Default How do I change lowercase data to capped data?

I have a bunch of data that I typed in lowercases in lots of cells. What can
I do to change the data to uppercase letters all at the same time? I don't
want to have to retype the data.

Thank you
  #2   Report Post  
Ken Hudson
 
Posts: n/a
Default How do I change lowercase data to capped data?

Hi,
With "abcd" in A1, enter "=UPPER(A1)" in B1 - no quotes. - to get "ABCD."
--
Ken Hudson


"Monique" wrote:

I have a bunch of data that I typed in lowercases in lots of cells. What can
I do to change the data to uppercase letters all at the same time? I don't
want to have to retype the data.

Thank you

  #3   Report Post  
Rowan Drummond
 
Posts: n/a
Default How do I change lowercase data to capped data?

If you want to do it all in place without using the UPPER formula then
select the cells you want to change and run this macro:

Sub UpperCase()
Dim r As Range
For Each r In Selection
If Not r.HasFormula Then r.Value = UCase(r.Value)
Next r
End Sub

Hope this helps
Rowan

Monique wrote:
I have a bunch of data that I typed in lowercases in lots of cells. What can
I do to change the data to uppercase letters all at the same time? I don't
want to have to retype the data.

Thank you

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
monitor cell that uses data validation list for change rgarber50 Excel Discussion (Misc queries) 2 August 1st 05 06:15 AM
When I change my data, my formulas don't update the answers,why? ayprlthing Excel Discussion (Misc queries) 6 June 18th 05 03:05 PM
Line Graph Data Recognition Nat Charts and Charting in Excel 2 April 30th 05 02:07 PM
VBA to change size of data labels? Jason Weiss Charts and Charting in Excel 2 March 24th 05 08:24 PM
How do I change a cell so I can have the data it contains in seve. swede Excel Discussion (Misc queries) 1 February 21st 05 06:22 PM


All times are GMT +1. The time now is 02:56 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"