Re: Force Caps Lock
From: John (r._at_9999yahoo.co.uk)
Date: 05/25/04
- Next message: Doug Glancy: "Re: Copy worksheet and paste it in New workbook, all data except Formulas"
- Previous message: Bob Flanagan: "Re: Range question"
- In reply to: Chip Pearson: "Re: Force Caps Lock"
- Next in thread: JWolf: "Re: Force Caps Lock"
- Reply: JWolf: "Re: Force Caps Lock"
- Messages sorted by: [ date ] [ thread ]
Date: Tue, 25 May 2004 21:45:17 +0100
You make a valid point Chip on my posts so I'll expand
on all bar kkknie's code nothing at all happens
On kkknie's post t it hits debug which highlights the whole line. Only a
very novice user on VBA so I am unsure of what further detail this debug
will give me
What I am trying to achieve is that say, when a user clicks the print Icons
all values within a range are forced upper case.
Hope that makes it clear
"Chip Pearson" <chip@cpearson.com> wrote in message
news:OuL3jgpQEHA.2704@TK2MSFTNGP10.phx.gbl...
> John,
>
> Rather than posting 4 replies simply stating "it doesn't work",
> you should describe why the proposed solution doesn't work. Does
> nothing happen? Do you get an error? What error?
>
>
> --
> Cordially,
> Chip Pearson
> Microsoft MVP - Excel
> Pearson Software Consulting, LLC
> www.cpearson.com
>
>
>
>
> "John" <r.@9999yahoo.co.uk> wrote in message
> news:7SNsc.469$Z14.451@news.indigo.ie...
> > Sorry for being a pain KK but I'm still getting a debug
> >
> >
> > "kkknie >" <<kkknie.16tls7@excelforum-nospam.com> wrote in
> message
> > news:kkknie.16tls7@excelforum-nospam.com...
> > > I was afraid that wouldn't work. Should have tested (duh).
> > >
> > > Modify to this:
> > >
> > > Dim r as Range
> > >
> > > For Each r in Sheets("Template").Range("A9:C43").Value
> > > r.Value = UCase(r.Value)
> > > Next
> > >
> > > This will loop through the cells individually and should
> work.
> > >
> > > K
> > >
> > >
> > > ---
> > > Message posted from http://www.ExcelForum.com/
> > >
> >
> >
>
>
- Next message: Doug Glancy: "Re: Copy worksheet and paste it in New workbook, all data except Formulas"
- Previous message: Bob Flanagan: "Re: Range question"
- In reply to: Chip Pearson: "Re: Force Caps Lock"
- Next in thread: JWolf: "Re: Force Caps Lock"
- Reply: JWolf: "Re: Force Caps Lock"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|