Make Excel Make Coleslaw!
June 21, 2007 8:13 PM
Subscribe
Excelfilter!!
Okay, how would I do this in MS Excel???
If the value of cell B is "F", then display 75% of the value of cell H in cell I.
But if the value of cell B is "M", then display 100% of the value of cell H in cell I.
posted by keep it tight to technology (6 comments total)
3 users marked this as a favorite
=IF(B="F",H*0.75,H)If not, then you could do this:
=IF(B="F",H*0.75,IF(B="M",H))posted by cerebus19 at 8:22 PM on June 21, 2007