countif

  • Thread starter Thread starter Charles Woll
  • Start date Start date
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
 
Try this:

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

RD
==============================================
Please keep all correspondence within the Group, so all may benefit!
==============================================
 
This seems to work (limited testing)
=SUMPRODUCT(--(table-(INT(table/10)*10)=1))
best wishes
 
Back
Top