Forum Discussion
TurfyRocket
Dec 19, 2023Copper Contributor
IF Data Exists run formula, else return empty
Good morning all, Probably a basic question here but any help is appreciated. I have a column of data running a furmula where some rows return a number and others are blank. I need a second c...
- Dec 19, 2023Use this:
=IF(T19="","",IF(T19>0,"WIN","LOSS"))
JKPieterse
Dec 19, 2023Silver Contributor
Use this:
=IF(T19="","",IF(T19>0,"WIN","LOSS"))
=IF(T19="","",IF(T19>0,"WIN","LOSS"))
TurfyRocket
Dec 19, 2023Copper Contributor
Works perfectly. Thank you!