Thread
:
Upper case data entry
View Single Post
#
2
Posted to microsoft.public.excel.misc
Sandy Mann
external usenet poster
Posts: 2,345
Upper case data entry
Al, or should I say AL <g
you could use a sheet event macro to change the case:
Private Sub Worksheet_Change(ByVal Target As Excel.Range)
Target.Value = UCase(Target.Value)
End Sub
--
HTH
Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings
with @tiscali.co.uk
"gramps" wrote in message
...
I work a 4 week rota which entails 4 different duties, any 5 days from
seven.
At the end of that time I produce a duty statement detailing which duty
numbers were worked on what days. The duty number is in the form of 'AB1'.
How can I ensure that even if I enter the duty number as 'ab1' it will be
automatically be entered in upper case format.
Many thanx
--
Al
Reply With Quote
Sandy Mann
View Public Profile
Find all posts by Sandy Mann