Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default simple formula question

If I enter between 50 and 99 I would like the cell to enter 3, between
100-150, 5 should go in the cell and above 151 I would like the cell to read
7.
Any help would be appreciated
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 7,247
Default simple formula question

Try something like the following:

=IF(A1<50,"???",IF(A1<100,2,IF(A1<151,3,7)))

You don't specify what value is to be returned if the value is <50. The
formula will return "???". Change as needed.


--
Cordially,
Chip Pearson
Microsoft Most Valuable Professional
Excel Product Group
Pearson Software Consulting, LLC
www.cpearson.com
(email on web site)



"Confused in Nebraska" <Confused in
wrote in message ...
If I enter between 50 and 99 I would like the cell to enter 3, between
100-150, 5 should go in the cell and above 151 I would like the cell to
read
7.
Any help would be appreciated


  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default simple formula question

I'm trying to make a spreadsheet for a fantasy football league. How do I get
the formula to read the cell for my scoring? Example: 0-150 =0, 151-200 = 3,
201-250 = 4, ect. I can only get it to read one equation or give just a word
FALSE instead of assigning the values

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 964
Default simple formula question

Assume you enter the score in A1


=IF(A1="","",VLOOKUP(A1,{0,0;151,3;201,4;251,5;301 ,6;351,7;401,8},2))


this will go up to 401 and 8


replace all occasions of A1 in the formula with the cell where you put the
score
--


Regards,


Peo Sjoblom

"Confused in Nebraska" wrote
in message ...
I'm trying to make a spreadsheet for a fantasy football league. How do I
get
the formula to read the cell for my scoring? Example: 0-150 =0, 151-200 =
3,
201-250 = 4, ect. I can only get it to read one equation or give just a
word
FALSE instead of assigning the values



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Simple formula question kleivakat Excel Discussion (Misc queries) 7 May 9th 08 05:33 PM
Formula question -simple for those who know Diane New Users to Excel 5 March 14th 08 06:07 PM
Simple Formula Question Dax Arroway Excel Discussion (Misc queries) 4 February 5th 08 09:43 PM
IF formula-simple question; simple operator Rich D Excel Discussion (Misc queries) 4 December 6th 07 03:36 PM
Simple Formula Question chip_pyp Excel Discussion (Misc queries) 1 December 8th 05 07:01 PM


All times are GMT +1. The time now is 11:22 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"