Find Latest Alpha Character Associated with Variable

Tucker2008

New Member
Joined
Aug 19, 2013
Messages
37
Office Version
  1. 2013
Platform
  1. Windows
All,

Is there a formula in Excel that can search for the Part Number in COL A, find the latest Alpha instance in Column B and Tag in Col C. Result would be below. Part #12345....C is latest Letter in Alphabet, Tag in Col C as such????? Any, all help would be greatly appreciated.
ABC
Part Number
112345A
212345B
312345CLatest
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
What version of Excel are you using?
Please update you account details to show this, as it affects what functions you have available.

Also will the latest letter always be the last row for that part number?
 
Upvote 0
If Col B is only a single character, then try

=IFERROR(IF(CODE(B2)=MAX(IF($A$2:$A$11=A2,CODE($B$2:$B$11))),"Latest",""),"")
Enter as an array with Ctrl, Shift & Enter

1594906876995.png
 
Upvote 0
Or this as a non array formula

=IFERROR(IF(CODE(B2)=AGGREGATE(14,6,CODE($B$2:$B$9)*($A$2:$A$9=A2),1),"Latest",""),"")
 
Upvote 0
What version of Excel are you using?
Please update you account details to show this, as it affects what functions you have available.

Also will the latest letter always be the last row for that part number?
Will do and no, it will not.
 
Upvote 0
Thanks for that.
As you are on 2013, try the two suggestions from gaz_chops
 
Upvote 0

Forum statistics

Threads
1,216,171
Messages
6,129,284
Members
449,498
Latest member
Lee_ray

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