Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
IJO
 
Posts: n/a
Default How do I upshift text

I want to have a series of cells that, when I enter text, it is upshifted
  #2   Report Post  
Don Guillett
 
Posts: n/a
Default

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   Report Post  
CarlosAntenna
 
Posts: n/a
Default

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   Report Post  
Andy Pope
 
Posts: n/a
Default

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   Report Post  
Hayeso
 
Posts: n/a
Default

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   Report Post  
CarlosAntenna
 
Posts: n/a
Default

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   Report Post  
Gord Dibben
 
Posts: n/a
Default

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
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
Import comma delimited text Lin Excel Discussion (Misc queries) 3 July 28th 06 04:07 PM
How do I rotate a text box Kent Charts and Charting in Excel 2 December 17th 04 12:13 AM
Text Boxes Graham Parkinson Excel Discussion (Misc queries) 2 December 2nd 04 05:01 PM
How do I get merged cells to display all text. Excel problem Excel Discussion (Misc queries) 2 November 30th 04 04:29 AM
Text Cuts Off Jeff Excel Discussion (Misc queries) 3 November 30th 04 02:07 AM


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