Multiplying Values only less than 1.5

A

Amanda Kenner

Hi,

I have a column of cells that are using if() and vlookup() to pul
numbers from elsewhere. I need excel to, in a separate cell, multipl
all of the values from these cells that are less than 1.5. But some o
the values are greater than 1.5, and I need those not to be a part o
the multiplication. Any help would be appreciated.

-A
 
J

joeu2004

Amanda Kenner said:
I have a column of cells that are using if() and vlookup() to pull
numbers from elsewhere. I need excel to, in a separate cell, multiply
all of the values from these cells that are less than 1.5. But some of
the values are greater than 1.5, and I need those not to be a part of
the multiplication.

When you have a question like this, it is always expeditious to provide
concrete examples of the formulas, at the very least. Even better: upload
an example Excel file to a file-sharing website and post its uRL.
(ExcelBanter might allow you to attach the Excel file. I don't know.)

Generally, if the result of the IF/VLOOKUP expression is in A1, then in B1,
you might write:

=IF(A1<1.5,A1*3,A1)

But the devil is in the details. For example, what to do if it is empty or
the null string ("")? And what to do if A1 is __equal_to__ 1.5? Finally,
what about values in A1 that __look_like__ they are 1.5 due to formatting,
but in fact, they are less than 1.5 (e.g. 1.49)?
 

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