Link to home
Start Free TrialLog in
Avatar of mak345
mak345Flag for United States of America

asked on

Using "Proper" Function within VBA

I have a cell in Excel that contains a string.....Is there any function in VB that will update that cell making it Proper Text?

example:

Total liabilities

should be changed to:

Total Liabilities

Thanks
Avatar of Tommy Kinard
Tommy Kinard
Flag of United States of America image

=PROPER("A1")

dragontooth

ASKER CERTIFIED SOLUTION
Avatar of Z_Beeblebrox
Z_Beeblebrox

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Sorry it should be
=PROPER(A1) 'A1 being the cell to be formatted

dragontooth


Avatar of mak345

ASKER

thank you