Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If there is an entry in that column then it will always be an X. It needs to
be capitalized. If there a way to just enter X and not shift X? Microsoft Office 2007 |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Not without using VBA event code for an in-cell change or a helper column
and the UPPER function. Event code for in-cell-as-you-enter change.................. Private Sub Worksheet_Change(ByVal Target As Excel.Range) If Target.Column 1 Then Exit Sub 'adjust column number to suit On Error GoTo ErrHandler Application.EnableEvents = False Target.Formula = UCase(Target.Formula) ErrHandler: Application.EnableEvents = True End Sub Helper column.................. In an adjacent column enter =IF(A1="","",UPPER(A1)) Gord Dibben MS Excel MVP On Tue, 19 May 2009 09:16:01 -0700, Lynda wrote: If there is an entry in that column then it will always be an X. It needs to be capitalized. If there a way to just enter X and not shift X? Microsoft Office 2007 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Automating to autofill column B based on column A entry | Excel Discussion (Misc queries) | |||
Auto entry of data based on entry of text in another column or fie | Excel Discussion (Misc queries) | |||
changing dates in a date formated column ? | Excel Discussion (Misc queries) | |||
how to make one column copy from one sheet to anoth column w/o zer | Excel Discussion (Misc queries) | |||
How do i make a formula reference the last entry of a column | Excel Worksheet Functions |