Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Capital & Small Letters


CAn any one give me code for identifing whether data in a cell i
capital letter or small case?

thanks in advance


with regards


Excel Powe

--
ExcelPowe
-----------------------------------------------------------------------
ExcelPower's Profile: http://www.excelforum.com/member.php...fo&userid=3096
View this thread: http://www.excelforum.com/showthread.php?threadid=51678

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 4,391
Default Capital & Small Letters

ExcelPower,
Dim MyString As String

MyString = ActiveCell.Value

Select Case True
Case MyString = UCase(MyString)
MsgBox "All capitals"
Case MyString = LCase(MyString)
MsgBox "No capitals"
Case Else
MsgBox "Mixed case"
End Select

NickHK

"ExcelPower" wrote
in message ...

CAn any one give me code for identifing whether data in a cell is
capital letter or small case?

thanks in advance


with regards


Excel Power


--
ExcelPower
------------------------------------------------------------------------
ExcelPower's Profile:

http://www.excelforum.com/member.php...o&userid=30964
View this thread: http://www.excelforum.com/showthread...hreadid=516786



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,253
Default Capital & Small Letters

=If(EXACT(a1,UPPER(a1),"UpperCase",
If(EXACT(a1,LOWER(a1),"Lowercase","MixedCase))
or more elaborate

=IF(ISBLANK(A1),"B",IF(ISNUMBER(A1),"N",IF(ISERROR (A1),"E",IF(EXACT(A1,U
PPER(A1)),"U",IF(EXACT(A1,LOWER(A1)),"L","M")))))

--
keepITcool
| www.XLsupport.com | keepITcool chello nl | amsterdam


ExcelPower wrote in
<news:<ExcelPower.23vjqy_1141020901.0377@excelforu m-nospam.com


CAn any one give me code for identifing whether data in a cell is
capital letter or small case?

thanks in advance


with regards


Excel Power

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
how to change small letters to capital letters HOW TO CHANGE Excel Discussion (Misc queries) 4 May 30th 07 01:12 AM
how do i turn all letters into capital letters? KeithT Excel Discussion (Misc queries) 3 May 11th 07 02:13 PM
How to recognise a small letter as being different to a capital le Suza Excel Discussion (Misc queries) 4 December 28th 06 02:37 PM
How do change a column of data in capitol letters to small letters Barb P. Excel Discussion (Misc queries) 6 November 15th 06 06:17 PM
Countif a small or capital letter hodkd Excel Worksheet Functions 5 October 11th 05 02:55 AM


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