View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.misc
Cue Cue is offline
external usenet poster
 
Posts: 47
Default Renaming Sheet Tab to Upper Case Letters

Perfect. Thanks again!
--
Cue


"T. Valko" wrote:

Try this:

Sheets("APRIL (2)").Name = Ucase(Format(Date, "MMM"))


--
Biff
Microsoft Excel MVP


"Cue" wrote in message
...
In VBA:

Sheets("APRIL (2)").Name = Format(Date, "MMM")

The result is May. But I want May with upper case letters, MAY. How can I
achieve this?

--
Cue