Counting Items with extra letter

dragonmouse

Board Regular
Joined
May 14, 2008
Messages
131
Office Version
  1. 2016
Platform
  1. Windows
I'm looking for the "simplest formula" to count serial numbers that may have an extra letter at the end:

12345
23456
45678
45678A
45678B
57198
67895
59876A
89756
98756

Even though there are 10 serial numbers, I ONLY want to count those with a "letter" in them. (my answer would return 3). In a nutshell I have a thousand numbers and I'm trying to separate out those numbers that are real jobs and those that are subjobs and simply return a COUNT on a second "summary" worksheet. Any ideas?
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
Assuming the cells are formatted as General so that the numbers without letters are real Excel numbers...

=COUNTA(A1:A100)- COUNT(A1:A100)

Change the two ranges to match where your data actually is located at (note, you can specify a larger range if you cannot be sure where the end of the data might be).
 
Upvote 0

Forum statistics

Threads
1,223,911
Messages
6,175,337
Members
452,637
Latest member
Ezio2866

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