Formulas

J

John Q

I have a cell with a simple currency formula in it. I want to add a specific
dollar amount to the formula result IF a single value from a group of 5
values appears in another cell.
 
D

Dave Peterson

Without more details, maybe something like:

=A1+IF(OR(B1={"a","b","c","d","e"}),22,0)
 
Top