+ Reply to Thread
Results 1 to 4 of 4

Divide by Zero

  1. #1
    rocky
    Guest

    Divide by Zero

    Formula for the following
    E20/E22*167
    When E20 is empty or not use, howt to write the formula that will ignore E20
    and continue wiyh the rest
    E20(noy used) and E22 *167 is done.

  2. #2
    º¼ÖÝÈË
    Guest

    Re: Divide by Zero

    if(isblank(E20),E22*167,E20/E22*167)

    "rocky" <[email protected]> дÈëÓʼþ
    news:[email protected]...
    > Formula for the following
    > E20/E22*167
    > When E20 is empty or not use, howt to write the formula that will ignore

    E20
    > and continue wiyh the rest
    > E20(noy used) and E22 *167 is done.




  3. #3
    º¼ÖÝÈË
    Guest

    Re: Divide by Zero

    =IF(OR(E20=0,ISBLANK(E20)),E22*167,E20/E22*167)



  4. #4
    Duke Carey
    Guest

    RE: Divide by Zero

    You're not going to get a divide by zero error from that formula if E20 is
    blank, but you will if E22 is blank. Maybe what you want is:

    =E20*167/(if(E22=0,1,E22)

    "rocky" wrote:

    > Formula for the following
    > E20/E22*167
    > When E20 is empty or not use, howt to write the formula that will ignore E20
    > and continue wiyh the rest
    > E20(noy used) and E22 *167 is done.


+ 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