Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 27
Default Possible to distinguish uppercase from lowercase text?

Setting up results from a database for analysis in Minitab. Minitab thinks
the same string in capital verses lower case letters are two different
things, so I'd like to be able to have a macro change all characters to upper
case. Otherwise I've got to do this by hand, which isn't a huge problem but
it's another of many things that rack up to making a simple task take
seemingly forever.


  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 5,441
Default Possible to distinguish uppercase from lowercase text?

Seed,

Try the macro below.

HTH,
Bernie
MS Excel MVP

Sub MakeAllUpperCase()
Dim myC As Range

On Error Resume Next
For Each myC In ActiveSheet.UsedRange.SpecialCells(xlCellTypeConst ants)
myC.Value = UCase(myC.Value)
Next myC

End Sub


"seed" wrote in message
...
Setting up results from a database for analysis in Minitab. Minitab
thinks
the same string in capital verses lower case letters are two different
things, so I'd like to be able to have a macro change all characters to
upper
case. Otherwise I've got to do this by hand, which isn't a huge problem
but
it's another of many things that rack up to making a simple task take
seemingly forever.



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 427
Default Possible to distinguish uppercase from lowercase text?

The UPPER() function changes the string inside the parens to upper
case. For instance, =UPPER("All capital Letters") returns ALL CAPITAL
LETTERS. Will that help you?

Dave O
Eschew obfuscation
  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22
Default Possible to distinguish uppercase from lowercase text?

Hi there.

Use a blank "helper" colum and enter the formula =Upper(celladdress). Copy
down, then Copy / Paste Special / Values and overwrite existing data.

BT

"seed" wrote:

Setting up results from a database for analysis in Minitab. Minitab thinks
the same string in capital verses lower case letters are two different
things, so I'd like to be able to have a macro change all characters to upper
case. Otherwise I've got to do this by hand, which isn't a huge problem but
it's another of many things that rack up to making a simple task take
seemingly forever.


  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 27
Default Possible to distinguish uppercase from lowercase text?

Well that's pretty durn easy. So easy, in fact, that I'll just assume that
checking the help section in excel wouldn't have given me the answer and that
I didn't in fact waste a few seconds of your time.

Most of the answers I'm looking for involve something more than the help
section - sometimes I forget it's there!

Thanks -

Ryan

"BT" wrote:

Hi there.

Use a blank "helper" colum and enter the formula =Upper(celladdress). Copy
down, then Copy / Paste Special / Values and overwrite existing data.

BT

"seed" wrote:

Setting up results from a database for analysis in Minitab. Minitab thinks
the same string in capital verses lower case letters are two different
things, so I'd like to be able to have a macro change all characters to upper
case. Otherwise I've got to do this by hand, which isn't a huge problem but
it's another of many things that rack up to making a simple task take
seemingly forever.




  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Possible to distinguish uppercase from lowercase text?

Wrong assumption.

Help on "upper case" or "change text case" would have given you the answer.


Gord Dibben MS Excel MVP

On Thu, 26 Feb 2009 11:11:02 -0800, seed
wrote:

Well that's pretty durn easy. So easy, in fact, that I'll just assume that
checking the help section in excel wouldn't have given me the answer and that
I didn't in fact waste a few seconds of your time.

Most of the answers I'm looking for involve something more than the help
section - sometimes I forget it's there!

Thanks -

Ryan

"BT" wrote:

Hi there.

Use a blank "helper" colum and enter the formula =Upper(celladdress). Copy
down, then Copy / Paste Special / Values and overwrite existing data.

BT

"seed" wrote:

Setting up results from a database for analysis in Minitab. Minitab thinks
the same string in capital verses lower case letters are two different
things, so I'd like to be able to have a macro change all characters to upper
case. Otherwise I've got to do this by hand, which isn't a huge problem but
it's another of many things that rack up to making a simple task take
seemingly forever.



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
Lowercase to uppercase workingwoman Excel Discussion (Misc queries) 3 September 14th 07 08:46 PM
Lowercase text changed by Ecel to Uppercase after import John Excel Discussion (Misc queries) 5 April 25th 06 10:26 PM
uppercase to lowercase Missy Excel Worksheet Functions 1 February 3rd 05 09:10 PM
lowercase to uppercase Louise Excel Worksheet Functions 6 January 10th 05 09:41 PM
uppercase to lowercase Mammoth Excel Discussion (Misc queries) 3 November 28th 04 03:19 AM


All times are GMT +1. The time now is 05:59 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"