A1 to C1 got 3 number, if all the number is below 10 , D1 formula will show "Small".
If A1 to C1 number is greater than 10, D1 formula will show "Big"
can i have the formula above.
thanks.
A1 to C1 got 3 number, if all the number is below 10 , D1 formula will show "Small".
If A1 to C1 number is greater than 10, D1 formula will show "Big"
can i have the formula above.
thanks.
Last edited by NBVC; 04-28-2010 at 10:10 PM.
Hi,
How about this:
=IF(MAX(A1:C1)>10,"Big","Small")
Rule 1: Never merge cells
Rule 2: See rule 1
"Tomorrow I'm going to be famous. All I need is a tennis racket and a hat".
Are are several ways to interpret your question...
Here are 2 more ways
=IF(COUNTIF(A1:C1,"<10"),"Small","Big")
checks that A1, B1 and C1 are all less than 10, if yes, Small, else Big.
=IF(COUNTIF(A1:C1,"<10"),"Small",if(COUNTIF(A1:C1,">=10"),"Big","Mixed")
checks that A1, B1 and C1 are all less than 10, if yes, Small, else if A1, B1 and C1 are all greater than or equal to 10, then Big, else it says "mixed".
Maybe you need to be more specific to your requirements.
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.
wow.... perfect , thanks. sweep and NBVC
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks