Closed Thread
Results 1 to 5 of 5

how can i ignore blank cells when multiple cells?

  1. #1
    arash
    Guest

    how can i ignore blank cells when multiple cells?

    when i want multiple some celss like
    a1*b1*c1*d1
    maybe some of this cells are blank
    and excel equal that to zero
    how can i ignor the zero value (balnk cells ) in multiple

    thx

  2. #2
    Gary''s Student
    Guest

    RE: how can i ignore blank cells when multiple cells?

    Use:


    =IF(A1="",1,A1)*IF(B1="",1,B1)*IF(C1="",1,C1)*IF(D1="",1,D1)
    --
    Gary''s Student


    "arash" wrote:

    > when i want multiple some celss like
    > a1*b1*c1*d1
    > maybe some of this cells are blank
    > and excel equal that to zero
    > how can i ignor the zero value (balnk cells ) in multiple
    >
    > thx


  3. #3
    MDBCT
    Guest

    RE: how can i ignore blank cells when multiple cells?

    No if statement are necessary to accomplish this.

    =PRODUCT(A1:D1)

    will work. It will only multiply all numbers that are in your range -
    ignoring text too.



    "arash" wrote:

    > when i want multiple some celss like
    > a1*b1*c1*d1
    > maybe some of this cells are blank
    > and excel equal that to zero
    > how can i ignor the zero value (balnk cells ) in multiple
    >
    > thx


  4. #4
    Robert_Steel@nothanks.com
    Guest

    Re: how can i ignore blank cells when multiple cells?

    Have a look at the PRODUCT function
    this will ignore empty and text cells

    =PRODUCT(A1:D1)

    hth RES

  5. #5
    Dave Peterson
    Guest

    Re: how can i ignore blank cells when multiple cells?

    Ouch, my eyes <vbg>.

    Robert_Steel@nothanks.com wrote:
    >
    > Have a look at the PRODUCT function
    > this will ignore empty and text cells
    >
    > =PRODUCT(A1:D1)
    >
    > hth RES


    --

    Dave Peterson

Closed 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