Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Graham
 
Posts: n/a
Default Changing single column default to Upper case

Can I set the default for a single column in Excel 2000 to Upper case. I keep
a lot of address information in various spreadsheets and would like to
default the Post Town column to Upper case, ready to mail merge.
Thankyou
Graham
  #2   Report Post  
Anirudh
 
Posts: n/a
Default

Hi graham,

Pls try this in cell B1
=upper(A1)


"Graham" wrote:

Can I set the default for a single column in Excel 2000 to Upper case. I keep
a lot of address information in various spreadsheets and would like to
default the Post Town column to Upper case, ready to mail merge.
Thankyou
Graham

  #3   Report Post  
Graham
 
Posts: n/a
Default

Many Thanks Anirudh - I have been using this as a "work around", but this
requires two columns, and I would like to have the text converted in a single
column, either when I type it in, or when it is pasted in from another sheet.
I collate info from many similar sheets, and want to try and get some
consistancy in appearance.

"Anirudh" wrote:

Hi graham,

Pls try this in cell B1
=upper(A1)


"Graham" wrote:

Can I set the default for a single column in Excel 2000 to Upper case. I keep
a lot of address information in various spreadsheets and would like to
default the Post Town column to Upper case, ready to mail merge.
Thankyou
Graham

  #4   Report Post  
Dave Peterson
 
Posts: n/a
Default

Take a look at Chip Pearson's page:
http://cpearson.com/excel/case.htm

Graham wrote:

Many Thanks Anirudh - I have been using this as a "work around", but this
requires two columns, and I would like to have the text converted in a single
column, either when I type it in, or when it is pasted in from another sheet.
I collate info from many similar sheets, and want to try and get some
consistancy in appearance.

"Anirudh" wrote:

Hi graham,

Pls try this in cell B1
=upper(A1)


"Graham" wrote:

Can I set the default for a single column in Excel 2000 to Upper case. I keep
a lot of address information in various spreadsheets and would like to
default the Post Town column to Upper case, ready to mail merge.
Thankyou
Graham


--

Dave Peterson
  #5   Report Post  
Gord Dibben
 
Posts: n/a
Default

If you want to change to Upper Case as you enter data in the Post Town column
you could use a worksheet event.

Private Sub Worksheet_Change(ByVal Target As Excel.Range)
If Target.Column < 1 Then Exit Sub
On Error GoTo ErrHandler
Application.EnableEvents = False
Target.Formula = UCase(Target.Formula)
ErrHandler:
Application.EnableEvents = True
End Sub

Target.Column number to be your Post Town column.

Right-click on the sheet tab and "View Code"

Paste the above into that module.


Gord Dibben Excel MVP

On Tue, 27 Sep 2005 07:28:40 -0500, Dave Peterson
wrote:

Take a look at Chip Pearson's page:
http://cpearson.com/excel/case.htm

Graham wrote:

Many Thanks Anirudh - I have been using this as a "work around", but this
requires two columns, and I would like to have the text converted in a single
column, either when I type it in, or when it is pasted in from another sheet.
I collate info from many similar sheets, and want to try and get some
consistancy in appearance.

"Anirudh" wrote:

Hi graham,

Pls try this in cell B1
=upper(A1)


"Graham" wrote:

Can I set the default for a single column in Excel 2000 to Upper case. I keep
a lot of address information in various spreadsheets and would like to
default the Post Town column to Upper case, ready to mail merge.
Thankyou
Graham




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
Changing file in all upper case to upper and lower case Sagit Excel Discussion (Misc queries) 15 May 30th 07 06:08 AM
convert value in word. For Exampe Rs.115.00 convert into word as . Shakti Excel Discussion (Misc queries) 1 May 10th 05 12:00 PM
Amount or Numbers in Words ron New Users to Excel 6 December 24th 04 07:32 PM
Convert Numeric into Text Monty Excel Worksheet Functions 0 December 18th 04 09:25 PM
Identifying the Active Fill Color Steve Conary Excel Discussion (Misc queries) 3 December 9th 04 04:45 AM


All times are GMT +1. The time now is 03:15 PM.

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"