formulas

  • Thread starter Thread starter Arlene
  • Start date Start date
A

Arlene

I am looking for a formula for excel, I am having trouble getting the right
calculation.
The answer I am looking for is:
if the range is less than 1300 then the answer is equal to the range, if the
range is greater than 1300 then the answer is 1300.
=if(range)<,"range",if(range)>1300,"1300"
 
if the range is less than 1300 then...
if the range is greater than 1300 then...

What if the range *is* 1300?

See if this does what you want:

=MIN(A1,1300)
 
Kindly clarify, whether here the word RANGE means that CELL VALUE or CELL
RANGES?

TGV
 
=MIN(A1,1300) -this formula worked, thank you.

TGV said:
Kindly clarify, whether here the word RANGE means that CELL VALUE or CELL
RANGES?

TGV
 

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

Back
Top