Results 1 to 4 of 4

Thread: Any good with Microsoft Excel?

  1. #1
    Taylorman
    This is totally not related to boats but I have looked everywhere and can't find the answer to this question. Im trying figure out how to make this if formula work in excel. I need to do an if statement where the logical test is if a value is between 0 and 20000, return a value. My problem is I don't know how to write it. I have tried this formula if(B15=1<20000,B15*.055,0). Im trying to say in my formula, if b15 is greater than 1 and less than 20000, multiply the number in b15 by .055, otherwise return a value of 0. My formula is not correct. How do I get the logical test to check for a value between 1 and 20000. Sorry for the spam but this is driving me nuts.

  2. #2
    mickeyfinn
    Try this. Input your range of numbers into Column A. Paste this formula into column B. The results should be correct now in column B. Let me know if this doesn't work for you.
    =IF(AND(1<A1, A1<20000), A1*0.055,0)

  3. #3
    Petrofied
    I think this is what you are looking for
    =IF(B15>20000,0,IF(B15<1,0,B15*0.055))

  4. #4
    mickeyfinn
    Two different ways to get to the same end point. Take your pick

Similar Threads

  1. Microsoft fined $1.5 Billion
    By Boozer in forum Sandbar
    Replies: 14
    Last Post: 02-24-2007, 10:18 AM
  2. Microsoft Outlook HELP, aaaargh!
    By 91nordic29 in forum Sandbar
    Replies: 14
    Last Post: 09-12-2006, 11:02 AM
  3. Microsoft updates...should I?
    By HammerDown in forum Sandbar
    Replies: 27
    Last Post: 06-29-2005, 04:55 AM
  4. WORD / EXCEL help, anyone..??
    By al cole'holic in forum Sandbar
    Replies: 2
    Last Post: 06-25-2004, 10:53 AM
  5. Microsoft vs GM
    By Miss Behavin in forum Sandbar
    Replies: 5
    Last Post: 02-03-2003, 02:53 PM

Posting Permissions

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