+ Reply to Thread
Results 1 to 11 of 11

I canīt find numbers ending zero 0

  1. #1
    Registered User
    Join Date
    04-27-2015
    Location
    Cascais, Portugal
    MS-Off Ver
    2010
    Posts
    3

    I canīt find numbers ending zero 0

    Hi, i put:=COUNT.IF(A3:A49;"*0")
    why doesn't work? what I'm doing wrong?
    I want find numbers ending zero, but i canīt, can you help me? thanks

  2. #2
    Forum Contributor LokeshKumar's Avatar
    Join Date
    03-31-2015
    Location
    India
    MS-Off Ver
    All, mostly 2010 now..
    Posts
    471

    Re: I canīt find numbers ending zero 0

    Hi,
    Use this..press ctrl+shift+enter
    Formula: copy to clipboard
    Please Login or Register  to view this content.


    If your question is resolved, mark it SOLVED using the thread tools. Click on the star if you think some-1 helped you.
    Last edited by LokeshKumar; 04-27-2015 at 07:04 AM.
    Lokesh Kumar
    Stay Hungry.. Stay Foolish..
    _________________________________________________________
    Please Click STAR to Add Reputation if my/someone's answer helped!

  3. #3
    Forum Contributor LokeshKumar's Avatar
    Join Date
    03-31-2015
    Location
    India
    MS-Off Ver
    All, mostly 2010 now..
    Posts
    471

    Re: I canīt find numbers ending zero 0

    If your question is resolved, mark it SOLVED using the thread tools. Click on the star if you think some-1 helped you.

  4. #4
    Forum Guru samba_ravi's Avatar
    Join Date
    07-26-2011
    Location
    Hyderabad, India
    MS-Off Ver
    Excel 2021
    Posts
    8,914

    Re: I canīt find numbers ending zero 0

    or
    =SUMPRODUCT((RIGHT(B4:B9,1)="0")*1)
    or
    =SUMPRODUCT(--(RIGHT(B4:B9,1)="0"))
    Samba

    Say thanks to those who have helped you by clicking Add Reputation star.

  5. #5
    Registered User
    Join Date
    04-27-2015
    Location
    Cascais, Portugal
    MS-Off Ver
    2010
    Posts
    3

    Re: I canīt find numbers ending zero 0

    SUM(IF doesn't work, is it SUM.IF or COUNT.IF or SUMPRODUCT?

  6. #6
    Forum Moderator Glenn Kennedy's Avatar
    Join Date
    07-08-2012
    Location
    Digital Nomad... occasionally based in Ireland.
    MS-Off Ver
    O365 (PC) V 2403
    Posts
    44,099

    Re: I canīt find numbers ending zero 0

    SUM(IF etc does work. Are you sure that you entered it as an array formula (CTRL SHIFT ENTER) and not as a regular formula (ENTER)?

    Also, did you just want to count the number of values that end in zero, or what?
    Glenn




    None of us get paid for helping you... we do this for fun. So DON'T FORGET to say "Thank You" to all who have freely given some of their time to help YOU

  7. #7
    Forum Contributor LokeshKumar's Avatar
    Join Date
    03-31-2015
    Location
    India
    MS-Off Ver
    All, mostly 2010 now..
    Posts
    471

    Re: I canīt find numbers ending zero 0

    Quote Originally Posted by virtualman View Post
    SUM(IF doesn't work, is it SUM.IF or COUNT.IF or SUMPRODUCT?
    Hi,

    Are you sure you have followed the instruction....
    CSE you have to press ctrl+shift+enter while entering this formula.....
    Formula: copy to clipboard
    Please Login or Register  to view this content.

    no need........
    Formula: copy to clipboard
    Please Login or Register  to view this content.

    no need........
    Formula: copy to clipboard
    Please Login or Register  to view this content.


    If your question is resolved, mark it SOLVED using the thread tools. Click on the star if you think some-1 helped you.

  8. #8
    Forum Expert Tony Valko's Avatar
    Join Date
    12-31-2011
    Location
    Pittsburgh
    MS-Off Ver
    2002, 2007:2013
    Posts
    18,890

    Re: I canīt find numbers ending zero 0

    This will not count 0s that are added through custom formatting. For example, the cell value is 1.1 but you format it to display as 1.10.

    =SUMPRODUCT(--(RIGHT(B4:B9)="0"))
    Last edited by Tony Valko; 04-27-2015 at 09:36 AM.
    Biff
    Microsoft MVP Excel
    Keep It Simple Stupid

    Let's Go Pens. We Want The Cup.

  9. #9
    Registered User
    Join Date
    04-30-2015
    Location
    Lubbock
    MS-Off Ver
    2010
    Posts
    5

    Re: I canīt find numbers ending zero 0

    I have a similar problem, but I have a numeric set of fields I want to count that contain a number string that represents phone numbers. I want to count how many of them are toll free numbers and how many are not.
    a sequence will look something like this: 91800XXXXXXX; 91866XXXXXXX; 91877XXXXXXX; 91888XXXXXXX or they may be 91XXXXXXXXXX where the x's represent long distance calls. I have looked at COUNTIF(S) and have found that won't work. It does seem like a =SUM or =SUMPRODUCT might work but I can't seem to get it down. In some of the examples above like: =SUM(IF(RIGHT($A$3:$A$49,1)="0",1)) I take it the part [ "0",1) ] the one is the number of digits in the field, right? I'm beginning to think this is either impossible or complicated and I'm leaning toward complicated. I have to believe there is a way to do what I'm trying to do. Thanks guys.

  10. #10
    Forum Contributor
    Join Date
    04-15-2015
    Location
    beirut
    MS-Off Ver
    2010
    Posts
    107

    Re: I canīt find numbers ending zero 0

    use this formula: (if you want to sum all number ending with 0)
    =SUMPRODUCT(--(MOD($A$3:$A$49,10)=0)*($A$3:$A$49))
    Last edited by salim ali; 04-30-2015 at 03:41 PM.

  11. #11
    Forum Contributor
    Join Date
    04-15-2015
    Location
    beirut
    MS-Off Ver
    2010
    Posts
    107

    Re: I canīt find numbers ending zero 0

    look at this file:
    Attached Files Attached Files

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [SOLVED] Find the Week Ending Date
    By trosasco in forum Excel General
    Replies: 5
    Last Post: 02-06-2014, 11:20 AM
  2. deleting ending zero from account numbers
    By cucjw in forum Excel - New Users/Basics
    Replies: 2
    Last Post: 01-15-2013, 06:30 PM
  3. [SOLVED] Macro to replace all numbers ending in CR (1.00CR) with -1.00
    By Zigmo in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 12-27-2012, 12:52 PM
  4. Force numbers to ending value
    By kpmeline in forum Excel General
    Replies: 3
    Last Post: 01-09-2009, 04:06 AM
  5. Only allow numbers ending with.....
    By shikamikamoomoo in forum Excel General
    Replies: 2
    Last Post: 11-29-2007, 01:52 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1