Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5
Default Capitlize a column?

How can I make a column all capital letters?


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 15
Default Capitlize a column?

Hi Austin,

Let say the cell you want to be all capitalized is A1, then you need
to put this formula into A2, "=UPPER(A1)" then Copy - Paste Special
(Value) into A1.

~jaeson
  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 226
Default Capitlize a column?

Austin Powers formulated on Thursday :
How can I make a column all capital letters?


Select the cells in the column that you want to change to uppercase.
Run this macro:

Sub UpperCase()
Application.ScreenUpdating = False
Dim c As Range
For Each c In Selection
c.value = UCase(c.value)
Next
End Sub

--
Garry

Free usenet access at http://www.eternal-september.org
ClassicVB Users Regroup! comp.lang.basic.visual.misc


  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5
Default Capitlize a column?

Unfortunately I am using Excel 2008 for Mac, which does not have VBA...

"GS" wrote in message
...
Austin Powers formulated on Thursday :
How can I make a column all capital letters?


Select the cells in the column that you want to change to uppercase. Run
this macro:

Sub UpperCase()
Application.ScreenUpdating = False
Dim c As Range
For Each c In Selection
c.value = UCase(c.value)
Next
End Sub

--
Garry

Free usenet access at http://www.eternal-september.org
ClassicVB Users Regroup! comp.lang.basic.visual.misc




  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 7
Default Capitlize a column?

"Austin Powers" wrote in message
...
Unfortunately I am using Excel 2008 for Mac, which does not have VBA...


It might have been nice to mention that in your original post. Hopefully
you will use this as a learning experience.


"GS" wrote in message
...
Austin Powers formulated on Thursday :
How can I make a column all capital letters?


Select the cells in the column that you want to change to uppercase. Run
this macro:

Sub UpperCase()
Application.ScreenUpdating = False
Dim c As Range
For Each c In Selection
c.value = UCase(c.value)
Next
End Sub

--
Garry

Free usenet access at http://www.eternal-september.org
ClassicVB Users Regroup! comp.lang.basic.visual.misc







  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 226
Default Capitlize a column?

Austin Powers explained :
Unfortunately I am using Excel 2008 for Mac, which does not have VBA...


So.., why have you posted to a programming group if Mac doesn't support
VBA???

--
Garry

Free usenet access at http://www.eternal-september.org
ClassicVB Users Regroup! comp.lang.basic.visual.misc


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
Search for a column based on the column header and then past data from it to another column in another workbook minkokiss Excel Programming 2 April 5th 07 01:12 AM
Based on a condition in one column, search for a year in another column, and display data from another column in the same row look [email protected] Excel Programming 2 December 30th 06 06:23 PM
Based on a condition in one column, search for a year in another column, and display data from another column in the same row look [email protected] Excel Discussion (Misc queries) 1 December 27th 06 05:47 PM
How can i have all alike product codes in column A be matched with like cities in column B and then add the totals that are in column C [email protected] Excel Programming 4 August 2nd 06 01:10 AM
format cell to capitlize Sonia Excel Worksheet Functions 1 June 22nd 05 04:58 PM


All times are GMT +1. The time now is 06:22 AM.

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

About Us

"It's about Microsoft Excel"