Base amount

N

Nicola H.

I am tring to find the base amount and this is the formula I am
currently using =MIN(B4:B15)*12

However now it needs to reflect (B4:B15)*12 and (C4:C15)*12 do I just
add them so he formula would be =MIN((B4:B15)*12+(C4:C15)*12)
 
P

Peo Sjoblom

Not that I know what you are talking about (taxes?) but maybe it should be

=(MIN(B4:B15)*12)+(MIN(C4:C15)*12)
 
J

JE McGimpsey

What does "reflect" mean to you?

If reflect means that you want the minimum number in B4:B15 multiplied
by 12 added to the minimum number in C4:C15 multiplied by 12, then your
formula is correct, though it could also be written slightly more
efficiently as

=(MIN(B4:B15)+MIN(C4:C15))*12

If reflect means that you want the minimum number in the range B4:C15
multiplied by 12, then use

=MIN(B4:C15)*12
 
G

Guest

If I understand correctly, all you need to do is include the additional range
in your original MIN function.

=MIN(B4:C15)*12

HTH,
Elkar
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top