+ Reply to Thread
Results 1 to 18 of 18

=MIN how do I take the zero out

  1. #1
    Forum Contributor
    Join Date
    06-23-2014
    Location
    USA
    MS-Off Ver
    2010
    Posts
    239

    =MIN how do I take the zero out

    Good morning everyone,

    How would I have my formula not show a zero?

    =MIN($C$35:$C$55,$G$35:$G$55,$K$35:$K$55,$C$58:$C$78,$G$58:$G$78,$K$58:$K$78,$C$81:$C$102,$G$81:$G$85)

    Some of the cells will have a number but as one cell has a zero my min formula always show a "0" instead of the lowest number.

    Can someone help?

    Thank you,
    Brian

  2. #2
    Forum Expert azumi's Avatar
    Join Date
    12-10-2012
    Location
    YK, Indonesia
    MS-Off Ver
    Excel 2019
    Posts
    2,372

    Re: =MIN how do I take the zero out

    Have you try remove null with custom formats? Select cell and right click and you'll find "Format Cells....." and click, and select from "Category" is "Custom" and in "Type" select word "General" and erase it replace with 0;-0;;@, click "Ok", last step is copy the custom formats using "Format Painter"

    hope it helps

    cheers

  3. #3
    Valued Forum Contributor mangesh.mehendale's Avatar
    Join Date
    06-04-2015
    Location
    India
    MS-Off Ver
    2007
    Posts
    510

    Re: =MIN how do I take the zero out

    Require Ctrl + Shift + Enter ...

    Formula: copy to clipboard
    Please Login or Register  to view this content.
    Don`t care, take care...

    Regards,
    Mangesh

  4. #4
    Forum Expert José Augusto's Avatar
    Join Date
    10-29-2014
    Location
    Portugal
    MS-Off Ver
    2013-2016
    Posts
    3,329

    Re: =MIN how do I take the zero out

    Try this (Sorry for such this large formula)
    Formula: Select Code copy to clipboard
    Formula: copy to clipboard
    Please Login or Register  to view this content.
    Last edited by José Augusto; 09-30-2016 at 10:47 AM. Reason: Correct formula

  5. #5
    Forum Expert
    Join Date
    12-11-2011
    Location
    Netherlands
    MS-Off Ver
    office 365
    Posts
    3,320

    Re: =MIN how do I take the zero out

    Willem
    English is not my native language sorry for errors
    Please correct me if I'm completely wrong

  6. #6
    Valued Forum Contributor
    Join Date
    06-21-2013
    Location
    Bangladesh
    MS-Off Ver
    Excel 2000, Excel XP, Excel 2002, Excel 2007, Excel 2010, Excel 2013
    Posts
    975

    Re: =MIN how do I take the zero out

    I have achieved your result with a huge formula.
    Please Login or Register  to view this content.

  7. #7
    Valued Forum Contributor
    Join Date
    06-21-2013
    Location
    Bangladesh
    MS-Off Ver
    Excel 2000, Excel XP, Excel 2002, Excel 2007, Excel 2010, Excel 2013
    Posts
    975

    Re: =MIN how do I take the zero out

    With the suggestion of Popipino's provided link you can use this also. But still a huge formula.
    Please Login or Register  to view this content.

  8. #8
    Forum Expert
    Join Date
    12-11-2011
    Location
    Netherlands
    MS-Off Ver
    office 365
    Posts
    3,320

    Re: =MIN how do I take the zero out

    Take a look at these formulas
    Attached Files Attached Files

  9. #9
    Forum Contributor
    Join Date
    06-23-2014
    Location
    USA
    MS-Off Ver
    2010
    Posts
    239

    Re: =MIN how do I take the zero out

    Thank all of you guys for the help. While I have not had time to test these formulas. I am sure they will work.
    Now is there any one formula that you guys recommend as the best one too use?

  10. #10
    Valued Forum Contributor
    Join Date
    06-21-2013
    Location
    Bangladesh
    MS-Off Ver
    Excel 2000, Excel XP, Excel 2002, Excel 2007, Excel 2010, Excel 2013
    Posts
    975

    Re: =MIN how do I take the zero out

    As I don't have much idea about FREQUENCY function, so I am unable to compare which one will be best. But in my sense I think that may be the solution with FREQUENCY will be better. But I am not sure about it.

  11. #11
    Forum Expert José Augusto's Avatar
    Join Date
    10-29-2014
    Location
    Portugal
    MS-Off Ver
    2013-2016
    Posts
    3,329

    Re: =MIN how do I take the zero out

    Hi
    No doubt that @popipipo formula is the best.

  12. #12
    Forum Expert XOR LX's Avatar
    Join Date
    04-18-2013
    Location
    Turin, Italy
    MS-Off Ver
    Office 365
    Posts
    7,742

    Re: =MIN how do I take the zero out

    Yes, the solution with FREQUENCY is the best of the bunch, here. Of course, it should however be pointed out that that set-up would fail if there were any negative numbers within the ranges being queried.

    Regards
    Click * below if this answer helped

    Advanced Excel Techniques: http://excelxor.com/

  13. #13
    Forum Contributor
    Join Date
    06-23-2014
    Location
    USA
    MS-Off Ver
    2010
    Posts
    239

    Re: =MIN how do I take the zero out

    Thank you guys for the help, yes The Frequency formula worked the best.

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

    Re: =MIN how do I take the zero out

    Quote Originally Posted by sanram View Post
    With the suggestion of Popipino's provided link you can use this also. But still a huge formula.

    =SMALL(($C$35:$C$55,$G$35:$G$55,$K$35:$K$55,$C$58:$C$78,$G$58:$G$78,
    $K$58:$K$78,$C$81:$C$102,$G$81:$G$85),INDEX(FREQUENCY(($C$35:$C$55,
    $G$35:$G$55,$K$35:$K$55,$C$58:$C$78,$G$58:$G$78,$K$58:$K$78,
    $C$81:$C$102,
    $G$81:$G$85),0),1)+1)
    No need for the INDEX function:

    =SMALL(($C$35:$C$55,$G$35:$G$55,$K$35:$K$55,$C$58:$C$78,
    $G$58:$G$78,$K$58:$K$78,$C$81:$C$102,$G$81:$G$85),FREQUENCY(
    ($C$35:$C$55,$G$35:$G$55,$K$35:$K$55,$C$58:$C$78,$G$58:$G$78,
    $K$58:$K$78,$C$81:$C$102,$G$81:$G$85),0)+1)
    Biff
    Microsoft MVP Excel
    Keep It Simple Stupid

    Let's Go Pens. We Want The Cup.

  15. #15
    Forum Contributor
    Join Date
    06-23-2014
    Location
    USA
    MS-Off Ver
    2010
    Posts
    239

    Re: =MIN how do I take the zero out

    Does this Require..... Ctrl + Shift + Enter ...

    =SMALL(($C$35:$C$55,$G$35:$G$55,$K$35:$K$55,$C$58:$C$78,
    $G$58:$G$78,$K$58:$K$78,$C$81:$C$102,$G$81:$G$85),FREQUENCY(
    ($C$35:$C$55,$G$35:$G$55,$K$35:$K$55,$C$58:$C$78,$G$58:$G$78,
    $K$58:$K$78,$C$81:$C$102,$G$81:$G$85),0)+1)

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

    Re: =MIN how do I take the zero out

    Quote Originally Posted by b_rianv View Post
    Does this Require..... Ctrl + Shift + Enter ...
    No, just normal Enter.

  17. #17
    Forum Contributor
    Join Date
    06-23-2014
    Location
    USA
    MS-Off Ver
    2010
    Posts
    239

    Re: =MIN how do I take the zero out

    Thank you Tony

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

    Re: =MIN how do I take the zero out

    You're welcome!

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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