Cin said:
I need to create a formula that basically says:
If A2 is less than 200,000.00 then multiply A2
by rate.
.... Else what? Try:
=IF(A2 < 200000, 200000*rate, 200000)
That assumes if the A2 is not less than 200,000,
you simply want 200,000.
By the way, that also assumes that "rate" is the
exact multiple you are interested in. If instead you
intended to say "increases 200,000 by a rate",
replace "rate" by "(1+rate)" above.
Finally, some might suggest the following alternative:
=IF(A2 < 200000, 200000*rate)
IMHO, that is very poor form because it will return the
value FALSE, not a value of the same units as 200000.
Normally that creates problems later. If you want the
cell to appear blank in the false condition, write:
=IF(A2 < 200000, 200000*rate, "")
Caveat: Although the resulting cell might appear to be
empty in the false condition, it does not behave exactly
the same as a truly empty cell in all cases for other
formulas that depend on that cell.