Forum Discussion
Monica2320
Oct 06, 2021Copper Contributor
Excel If Formula
I have two columns. In Column C is the score of one team and Column D is the score of the opponent. In Column E, I have the formula =IF(C37>D37,"W","L"). However, if the scores are not posted into th...
HansVogelaar
Oct 06, 2021MVP
=IF(OR(C37="",D37=""),"",IF(C37>D37,"W","L"))
Monica2320
Oct 06, 2021Copper Contributor
Thank you so much! That worked!