Reputation: 1
In AND function i have passed the cell ranges like this: AND(A10:A12>9,B10:B12<45) but shows an error. Please help me with this And the all values in the cells are numbers.
Upvotes: 0
Views: 62
Reputation: 36965
AND()
function doesn't support array input. Instead, use below function.
=(A10:A12>9)*(B10:B12<45)
Upvotes: 0