Sumifs between two values

I'm trying to solve the below written formula:

=SUMIFS(AE9:AE17,S8:S17,">=1.0",S8:S17,"<=1.15")

it returns #VALUE! Error.

AE9:AE17 is the sum range

I couldn't find the solution online. Anyone out there can help?

1

2 Answers

Make sure the sum range and the criteria range in formula are the same.

Your Formula should be written like this:

=SUMIFS(AE9:AE17,S9:S17,">=1.0",S9:S17,"<=1.15")

Note: The problem with your formula was Mismatch of SUM & CRITERIA range, as mentioned by Lee also.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like