ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   making text in Title Case automatically (https://www.excelbanter.com/excel-programming/363863-making-text-title-case-automatically.html)

tweety127[_22_]

making text in Title Case automatically
 

hi, how can i make all the text inputs be in Title Case format
automatically, even if the user input a different case pattern?


--
tweety127
------------------------------------------------------------------------
tweety127's Profile: http://www.excelforum.com/member.php...o&userid=34673
View this thread: http://www.excelforum.com/showthread...hreadid=550498


Gord Dibben

making text in Title Case automatically
 
Would require worksheet event code.

As written, the code below affects all cells in columns A through H

Private Sub Worksheet_Change(ByVal Target As Excel.Range)
If Target.Column 8 Then Exit Sub
On Error GoTo ErrHandler
Application.EnableEvents = False
Target.Formula = Application.Proper(Target.Formula)
ErrHandler:
Application.EnableEvents = True
End Sub

Right-click on sheet tab and "View Code".

Copy/paste the code into that module.


Gord Dibben MS Excel MVP

On Fri, 9 Jun 2006 17:50:52 -0500, tweety127
wrote:


hi, how can i make all the text inputs be in Title Case format
automatically, even if the user input a different case pattern?




All times are GMT +1. The time now is 12:29 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com