Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 109
Default Excel Formula

I'd like to create the following formula.

The formula has to include all three steps below.
1) If cell A1:A3000 equal 0.01-10 then the result is Maybe
2) If cell A1:A3000 equal 10 then the result is YES
2) If the cell is empty then the result is NO.

Thanks!
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,565
Default Excel Formula

=IF(AND(A10,A1<10),"Maybe",IF(A1=10,"Yes","No"))


"Brent" wrote in message
...
I'd like to create the following formula.

The formula has to include all three steps below.
1) If cell A1:A3000 equal 0.01-10 then the result is Maybe
2) If cell A1:A3000 equal 10 then the result is YES
2) If the cell is empty then the result is NO.

Thanks!



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,059
Default Excel Formula

"Brent" wrote:
I'd like to create the following formula.
The formula has to include all three steps below.
1) If cell A1:A3000 equal 0.01-10 then the result is Maybe
2) If cell A1:A3000 equal 10 then the result is YES
2) If the cell is empty then the result is NO.


What if A1:A3000 is less than 0.01?

I suspect you want to put the following in some cell parallel to A1 and copy
down through row 3000:

=if(A1="", "NO", if(A1<=10, "Maybe", "YES"))

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,565
Default Excel Formula

I was wondering if the OP was looking for the sum of a1:a3000 as a
comparison.

=IF(AND(SUM(A1:A3000)0,(SUM(A1:A3000)<10)),"Maybe ",IF(SUM(A1:A3000)=10,"Yes","No"))


"JoeU2004" wrote in message
...
"Brent" wrote:
I'd like to create the following formula.
The formula has to include all three steps below.
1) If cell A1:A3000 equal 0.01-10 then the result is Maybe
2) If cell A1:A3000 equal 10 then the result is YES
2) If the cell is empty then the result is NO.


What if A1:A3000 is less than 0.01?

I suspect you want to put the following in some cell parallel to A1 and
copy down through row 3000:

=if(A1="", "NO", if(A1<=10, "Maybe", "YES"))



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
Excel 2002 Formula: Urgent Conditional Formula Required Right Away - if possible blue[_2_] Excel Discussion (Misc queries) 2 July 11th 07 06:08 PM
Build excel formula using field values as text in the formula val kilbane Excel Worksheet Functions 2 April 18th 07 01:52 PM
Excel 2002 formula displayed not value formula option not checked Dean Excel Worksheet Functions 1 February 28th 06 02:31 PM
How do I view formula results intead of formula in excel? davidinatlanta Excel Worksheet Functions 4 February 7th 06 03:02 PM
Converting an Excel formula to an Access query formula Adam Excel Discussion (Misc queries) 1 December 15th 04 03:38 AM


All times are GMT +1. The time now is 03:56 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"