View Single Post
 
Old 12-06-2012, 02:59 PM
Colin Legg's Avatar
Colin Legg Colin Legg is offline Windows 7 32bit Office 2010 32bit
Expert
 
Join Date: Jan 2011
Location: UK
Posts: 369
Colin Legg will become famous soon enough
Default

Quote:
is that the third argument -> B1-"FY 2010", is not a third criteria, but the results displayed if the first two arguments, as criteria, is true.
Sorry, but that's incorrect.

In this formula:
=AND(E4>F9,D7<A5,M3>G1,B1="FY 2010")

All of the items inside the AND() are criteria.

E4>F9 is criteria1 - a comparison which returns True or False
D7<A5 is criteria2 - a comparison which returns True of False
M4>G1 is criteria3 - a comparison which returns True or False
B1="FY 2010" is criteria4 - a comparison which returns True or False

Then
=AND(criteria1 , criteria2, criteria3, criteria4)

returns True if all four criteria are True, otherwise it returns False.
Reply With Quote