Calculation based on lowest price

V

vjohns158

I have 5 different columns on my spreadsheet with different prices. I
want Excel to find the lowest price within those cells and multiply it
by another price I have designated. How do I do this?
 
N

Niek Otten

=A1*MIN(B1:F1)

--
Kind regards,

Niek Otten
Microsoft MVP - Excel

|I have 5 different columns on my spreadsheet with different prices. I
| want Excel to find the lowest price within those cells and multiply it
| by another price I have designated. How do I do this?
 
B

Bob Phillips

=MIN(rng)*other_value

--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my addy)
 
V

vjohns158

=MIN(rng)*other_value

--
---
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)






- Show quoted text -

Thanks a ton, I just figured this out!
 
V

vjohns158

=A1*MIN(B1:F1)

--
Kind regards,

Niek Otten
Microsoft MVP - Excel


|I have 5 different columns on my spreadsheet with different prices. I
| want Excel to find the lowest price within those cells and multiply it
| by another price I have designated. How do I do this?

Thank you so much!
 
C

Conan Kelly

vjohns158,

Use the MIN() function:

=MIN(Range)

Using your exmple:

=MIN(A2:A50)*2.50
 

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