Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
To simplify presentation of stock locations in a multi-user shared
spreadsheet I wish force all users to always show "GA05" or "AD03" style rather than "ga05" or "Ad03" which will occur if not preset. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
Right click your sheet tab, view code and paste this in. Change the range to suit Private Sub Worksheet_Change(ByVal Target As Range) Const WS_RANGE As String = "A1:A100" '<== change to suit On Error GoTo ws_exit Application.EnableEvents = False If Not Intersect(Target, Me.Range(WS_RANGE)) Is Nothing Then Target.Formula = UCase(Target.Formula) End If ws_exit: Application.EnableEvents = True End Sub Mike "DuncanM9" wrote: To simplify presentation of stock locations in a multi-user shared spreadsheet I wish force all users to always show "GA05" or "AD03" style rather than "ga05" or "Ad03" which will occur if not preset. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
EXCEL Capital Letters | Excel Discussion (Misc queries) | |||
Excel Capital Letters | Excel Discussion (Misc queries) | |||
how to change existing column to capital letters | Excel Discussion (Misc queries) | |||
Making Everything Capital Letters In A Column: How ? | New Users to Excel | |||
How do I change a column of cells to all capital letters? | Excel Worksheet Functions |