+ Reply to Thread
Results 1 to 6 of 6

Rounding & IF statement Question

  1. #1
    Registered User
    Join Date
    10-03-2007
    Posts
    31

    Rounding & IF statement Question

    I am using IF statements with all 7 variables in it. I am trying to get the statement to look at the answer from another cell, which it is. The problem is the cell it is pointing to has an answer like 3.9375 (I have the cell showing no decimal placing, so 4) and I cannot get the If statement to use the rounded number.

    The answer will never be the same unless rounded, so I cannot just use the 3.9375.

    Here is my IF statement:
    =IF(E10/E16="XXX", "", IF(E10/E16=1, 1, IF(E10/E16=2, 3, IF(E10/E16=3, 6, IF(E10/E16=4, 10, IF(E10/E16=5, 15, IF(E10/E16=6, 21, IF(E10/E16=7, 28, "XXX"))))))))

    I this case E10 is 1,778 and E16 is 7,000. But both those values will change.

    I have the answer from E10/E16 in another cell, again rounded with no decimel points, I tried to point to that (E18) again without luck.

    Thanks for your help!

  2. #2
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898
    You can just add the Round() function to the variables within your formula.

    e.g. =Round(E10/E16,0)

    You can also rewrite your formula a bit...

    Please Login or Register  to view this content.
    Where there is a will there are many ways.

    If you are happy with the results, please add to the contributor's reputation by clicking the reputation icon (star icon) below left corner

    Please also mark the thread as Solved once it is solved. Check the FAQ's to see how.

  3. #3
    Forum Expert daddylonglegs's Avatar
    Join Date
    01-14-2006
    Location
    England
    MS-Off Ver
    Microsoft 365
    Posts
    14,699
    I'm not sure how E10/E16 can ever equal "XXX", perhaps try

    =IF(E16,(ROUND(E10/E16,0)^2+ROUND(E10/E16,0))/2,"")

  4. #4
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898
    Quote Originally Posted by daddylonglegs
    I'm not sure how E10/E16 can ever equal "XXX", perhaps try

    ...
    good point!....today's not my day

  5. #5
    Registered User
    Join Date
    10-03-2007
    Posts
    31
    Quote Originally Posted by daddylonglegs
    I'm not sure how E10/E16 can ever equal "XXX"
    You guys are quick!

    I only does before the information is put in. I am making a program to calculate how many pounds per square foot a cement block can handle, and then how many blocks we would need for X amount of weight.

    XXX represents a cell waiting for numbers to be put in, I just didn't want anything in the results cell before the other cells are filled.

    I will try to add the round function, but I've never used that before. What does the zero do in this --> (E10/E16,0)?

    Thanks again!

  6. #6
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898
    Quote Originally Posted by SOMLSS1

    ... What does the zero do in this --> (E10/E16,0)?

    Thanks again!
    Rounds to 0 decimal places.... so, in this case, rounds to nearest integer

    See Round function in Excel help.

+ 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