Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
I want to have a series of cells that, when I enter text, it is upshifted
|
#2
![]() |
|||
|
|||
![]()
upshifted???
-- Don Guillett SalesAid Software "IJO" wrote in message ... I want to have a series of cells that, when I enter text, it is upshifted |
#3
![]() |
|||
|
|||
![]()
Select your range, FormatCellsAlignmentVerticalTop
Carlos "IJO" wrote in message ... I want to have a series of cells that, when I enter text, it is upshifted |
#4
![]() |
|||
|
|||
![]()
upshift = uppercase ??
http://www.cpearson.com/excel/case.htm Cheers Andy IJO wrote: I want to have a series of cells that, when I enter text, it is upshifted -- Andy Pope, Microsoft MVP - Excel http://www.andypope.info |
#5
![]() |
|||
|
|||
![]()
Assuming the Range is A1:A20 then
Right Click the Sheet Tab and select "View Code" Paste the following into the code window Private Sub Worksheet_SelectionChange(ByVal Target As Range) Dim MyCell As Range, MyRange As Range Set MyRange = Me.Range("A1:A20") For Each MyCell In MyRange MyCell = UCase(MyCell) Next End Sub Select File ....Close and return to Excel "IJO" wrote: I want to have a series of cells that, when I enter text, it is upshifted |
#6
![]() |
|||
|
|||
![]()
Lots of different answers. Each is correct depending on the interpretation
of the question. Can we hear from the OP? What was the question? "IJO" wrote in message ... I want to have a series of cells that, when I enter text, it is upshifted |
#7
![]() |
|||
|
|||
![]()
Upshift.....Superscript??
Gord Dibben Excel MVP On Thu, 9 Dec 2004 13:26:38 -0500, "CarlosAntenna" wrote: Lots of different answers. Each is correct depending on the interpretation of the question. Can we hear from the OP? What was the question? "IJO" wrote in message ... I want to have a series of cells that, when I enter text, it is upshifted |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Import comma delimited text | Excel Discussion (Misc queries) | |||
How do I rotate a text box | Charts and Charting in Excel | |||
Text Boxes | Excel Discussion (Misc queries) | |||
How do I get merged cells to display all text. | Excel Discussion (Misc queries) | |||
Text Cuts Off | Excel Discussion (Misc queries) |