Capitalize the last character of a cell.

  • Thread starter Thread starter oobe
  • Start date Start date
O

oobe

I have a huge amount of cells where the city and state are combined.
For example Los Angeles, CA. The problem is the text comes over as LOS
ANGELES, CA and when I use the proper function it comes out to Los
Angeles, Ca. All I need to do is figure out how to capitalize the last
character in each of these cells without having to do go city by city.
Any ideas?
 
Maybe you can use a helper cell with a formula like:

=PROPER(LEFT(A1,LEN(A1)-2))&UPPER(RIGHT(A1,2))
 

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

Back
Top