LEFT and PROPER

S

Sam

Is it possible to use the LEFT and PROPER function in the same formula?
For example I want to grab the cell C3 that has the words 'BASIC SKILLS' in
it. I only want to display the left part of the cell and in proper case. So
in my resulting cell (C5) the result would be 'Basic.'
I can't seem to do this in one formula.

I would appreciate any help.
Sam
 
P

Peo Sjoblom

=PROPER(LEFT(C3,FIND(" ",C3)-1))

if it is always the first word separated by a space

--


Regards,


Peo Sjoblom
 
B

Bernard Liengme

How about =PROPER(LEFT(A1,5))
Or =PROPER(LEFT(A2,FIND(" ",A1)-1))
best wishes
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top