If formula

Copper Contributor

I have a currency value in cell A10, and a marker "X" in cell C10 for certain conditions.  I would like to write an "If" statement in cell F10 to do the following: If the "X" marker is present in cell C10, copy the value in cell A10 to cell F10.  If the "X" marker is NOT present in cell C10 (cell is blank), do NOT copy the value in cell A10 and leave cell F10 blank.  How do I format an "If" function to do this?

1 Reply

The formula in F10 is: 

=IF(C10="X",

A10,

"")