JulieD said:
Hi julie
a cell can not contain a function and the ability to store a value in itself
so you can have
=IF(C2="FVF", your_formula,"")
which will put the formula in the cell if C2 = FVF and allow you to type
directly into the cell if you want to, but if you do type directly into the
cell you will overtype (ie lose) the formula - so then if at a later stage
C2 did =FVF then this cell would not change.
I believe this can however, be achieved using a macro solution - if you're
interested in this please post back.
Thanks Julie. Actually, I never plan to change the value in the referent
cell after I enter it (in this case, C2="FVF"), so I wouldn't mind
overwriting the formula to enter a text value in other cases.
My plan is to store dollar amounts of various values in this one column, and
then in the next column, label what type of dollar value this is. In this
case, it is for eBay. So, for regular listing fees I am charged, these are
fixed, and I enter those manually. But for certain fees, such as the Final
Value Fee (=FVF), this is computed based on a sliding-scale formula,
depending on the amount your item sold for. So if this were the type of fee,
then I would want the formula to apply. But once I type in "FVF", I would
never change this. Otherwise, for other types of fees, I want to just type
in the value manually.
So, could I do the formula below:
=IF(C2="FVF",_my formula_,)
where I leave the final ternary value of the IF formula out? IOW, I want to
leave the cell blank if "FVF" is not in the referent cell.