Dear STDEV(i),

As you say text case can be converted to Proper Case using VBA but
wont be using Application.Function/Worksheet Function give faster
results as compared to this other method?

Warm regards,
Anand Kumar

On Jul 7, 6:02 am, "STDEV(i)" <setiyowati.d...@gmail.com> wrote:
> Converting text case to ProperCase in VBA
>
> alt:
> Instead of using Application.Function / WorksheetFunction) we can also use
> VBA function:
> *StrConv *function
>
> StrConv("AAAA BBBB CCCC", vbProperCase)
>
> Example in sub procedur
>
> Sub ConvertProperCase()
>    Application.ScreenUpdating = False
>    Dim Cell As Range
>    For Each Cell In Selection.Cells
>       If Not Cell.HasFormula Then
>           Cell.Value = *StrConv(Rng, vbProperCase)*
>       End If
>    Next Cell
>    Application.ScreenUpdating = True
> End Sub
>
> Thank you
>
> On Thu, Jul 7, 2011 at 3:18 AM, Rajan_Verma <rajanverma1...@gmail.com>wrote:
>
>
>
>
>
>
>
> >  http://excelpoweruser.blogspot.com/2011/07/hiding-data-on-worksheet.h...
> > ***
>
> > ** **

-- 
----------------------------------------------------------------------------------
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links : 
http://twitter.com/exceldailytip
2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
3. Excel tutorials at http://www.excel-macros.blogspot.com
4. Learn VBA Macros at http://www.quickvba.blogspot.com
5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 
To post to this group, send email to excel-macros@googlegroups.com

<><><><><><><><><><><><><><><><><><><><><><>
Like our page on facebook , Just follow below link
http://www.facebook.com/discussexcel

Reply via email to