Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi, if I have 10 cells numbered 1 to 10, and I want to tell if the last
3 values are smaller then each other, how do I do this. If a10a9 and a9a8 answer = 1. Regards Robert |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() If(and(a10<A9,A9<A8,A8<A7),1,"") -- Paul987 ------------------------------------------------------------------------ Paul987's Profile: http://www.excelforum.com/member.php...o&userid=24850 View this thread: http://www.excelforum.com/showthread...hreadid=517366 |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
or for just 3 values with the last (A10) the largest:
=If(and(a10A9,A9A8),1,"") -- Regards, Tom Ogilvy "Paul987" wrote in message ... If(and(a10<A9,A9<A8,A8<A7),1,"") -- Paul987 ------------------------------------------------------------------------ Paul987's Profile: http://www.excelforum.com/member.php...o&userid=24850 View this thread: http://www.excelforum.com/showthread...hreadid=517366 |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks for your reply, this is great.
Regards Robert |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Nested IF | Excel Worksheet Functions | |||
nested if | Excel Worksheet Functions | |||
nested if based on nested if in seperate sheet. how? | Excel Worksheet Functions | |||
Nested if | Excel Worksheet Functions | |||
What is quicker? Nested or non nested ifs | Excel Programming |