countif

C

Charles Woll

I have a list of about 1000 numbers in column A of six digit numbers. I
wish to count only the numbers that end in "1".
i.e. 105001.
I have named the list in coulumn A "table".
Pls help...

--
\\\|///
\\ ~ ~ //
( @ @ )
--oOOo-(_)-oOOo---
Charlie Woll
 
R

RagDyer

Try this:

=SUMPRODUCT(--(RIGHT(A1:A1000)="1"))
--
HTH,

RD
==============================================
Please keep all correspondence within the Group, so all may benefit!
==============================================
 
B

Bernard Liengme

This seems to work (limited testing)
=SUMPRODUCT(--(table-(INT(table/10)*10)=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

Similar Threads


Top