Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
How can I make a column all capital letters?
|
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
"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
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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 |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Search for a column based on the column header and then past data from it to another column in another workbook | Excel Programming | |||
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 | Excel Programming | |||
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 | Excel Discussion (Misc queries) | |||
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 | Excel Programming | |||
format cell to capitlize | Excel Worksheet Functions |