Identify lower case letters

bobgrand

Active Member
Joined
Apr 14, 2008
Messages
252
Office Version
  1. 365
Platform
  1. Windows
Hello all,

In our bin location structure we use the last character, which could be the 4th, 5th or 6th character to identify which items have more than one bin location.

Is it possible to identify these with a simple Y if the last character is lowercase and N if the last character is uppercase.

Any help would be greatly appreciated.

Bob
 

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)
How about
Excel Formula:
=IF(RIGHT(A2,1)=LOWER(RIGHT(A2,1)),"Y","N")
 
Upvote 0
How about
Excel Formula:
=IF(RIGHT(A2,1)=LOWER(RIGHT(A2,1)),"Y","N")
Fluff,
Thank you but this is putting a Y on everything
If Lowercase = Y
If Uppercase = N

10D05a = Y
M9A07C = N
10D05b = Y
18A08B = N
10D05a = Y
 
Upvote 0
Ok, how about
Excel Formula:
=IF(EXACT(RIGHT(A2,1),LOWER(RIGHT(A2,1))),"Y","N")

Also I suggest that you update your Account details (or click your user name at the top right of the forum) so helpers always know what Excel version(s) & platform(s) you are using as the best solution often varies by version. (Don’t forget to scroll down & ‘Save’)
 
Upvote 0

Forum statistics

Threads
1,223,227
Messages
6,170,848
Members
452,361
Latest member
d3ad3y3

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top