Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
dj dj is offline
external usenet poster
 
Posts: 92
Default If value matches criteria, return formula

I'm creating a calculator that returns a value based on a set of criteria.
One example: scores below 0% should return X value, between 0-10% should
return Y value, scores greater than 10% should return Z value. X, Y and Z
represent 0% of max, 50% of max and 150% of max respectively. Any ideas?
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default If value matches criteria, return formula

X, Y and Z represent 0% of max, 50% of max
and 150% of max respectively


Max of what?

Let's assume "max" is 100.

=IF(COUNT(A1),IF(A1<0,0,IF(A1<=10%,100*0.5,100*1.5 )),"")

--
Biff
Microsoft Excel MVP


"DJ" wrote in message
...
I'm creating a calculator that returns a value based on a set of criteria.
One example: scores below 0% should return X value, between 0-10% should
return Y value, scores greater than 10% should return Z value. X, Y and Z
represent 0% of max, 50% of max and 150% of max respectively. Any ideas?



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
dj dj is offline
external usenet poster
 
Posts: 92
Default If value matches criteria, return formula

Worked like a charm, you're the best!

"T. Valko" wrote:

X, Y and Z represent 0% of max, 50% of max
and 150% of max respectively


Max of what?

Let's assume "max" is 100.

=IF(COUNT(A1),IF(A1<0,0,IF(A1<=10%,100*0.5,100*1.5 )),"")

--
Biff
Microsoft Excel MVP


"DJ" wrote in message
...
I'm creating a calculator that returns a value based on a set of criteria.
One example: scores below 0% should return X value, between 0-10% should
return Y value, scores greater than 10% should return Z value. X, Y and Z
represent 0% of max, 50% of max and 150% of max respectively. Any ideas?




  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default If value matches criteria, return formula

You're welcome. Thanks for the feedback!

--
Biff
Microsoft Excel MVP


"DJ" wrote in message
...
Worked like a charm, you're the best!

"T. Valko" wrote:

X, Y and Z represent 0% of max, 50% of max
and 150% of max respectively


Max of what?

Let's assume "max" is 100.

=IF(COUNT(A1),IF(A1<0,0,IF(A1<=10%,100*0.5,100*1.5 )),"")

--
Biff
Microsoft Excel MVP


"DJ" wrote in message
...
I'm creating a calculator that returns a value based on a set of
criteria.
One example: scores below 0% should return X value, between 0-10%
should
return Y value, scores greater than 10% should return Z value. X, Y
and Z
represent 0% of max, 50% of max and 150% of max respectively. Any
ideas?






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
Return value of non matches in columns Gemi Excel Discussion (Misc queries) 4 March 5th 09 07:40 PM
i need to get all matches in one column for one criteria PERANISH Excel Worksheet Functions 2 November 13th 08 12:40 AM
Is there any way to use HLOOKUP in an array formula to return multiple matches? [email protected] Excel Worksheet Functions 9 August 31st 06 03:55 AM
How do I use lookup to return multiple matches and sum them? Nat Excel Discussion (Misc queries) 1 August 15th 06 06:23 PM
Vlookup to return the sum of multiple matches AussieExcelUser Excel Discussion (Misc queries) 3 August 1st 06 12:29 AM


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

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

About Us

"It's about Microsoft Excel"