Marriage of two formulas

G

Guest

How do I add a maximum pricing level to the following formula?

=VLOOKUP(A1,{0,35;665,5.25;1000,4.75;2500,3;5000,2.5;10000,1.95},2)

I need the maximum to be 465.
 
D

Dave Peterson

=max(10,yourformulahere)





emerald_dragonfly said:
How do I add a maximum pricing level to the following formula?

=VLOOKUP(A1,{0,35;665,5.25;1000,4.75;2500,3;5000,2.5;10000,1.95},2)

I need the maximum to be 465.
 
G

Guest

try something like
=min(465,VLOOKUP(A1,{0,35;665,5.25;1000,4.75;2500,3;5000,2.5;10000,1.95},2)
Depending on what parameter is the pricing level.
 

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