Forum Discussion
Michael1105
Nov 01, 2019Brass Contributor
If Is Blank Syntax
Can the If(ISBLANK(cell) syntax be used multiple times for a function? What I want my worksheet to do is have one cell return data if multiple cells have data inputted into them, if not then return ...
Twifoo
Nov 01, 2019Silver Contributor
Try this:
=IF(D29<>””,”V”,
IF(D30<>””,”1st”,
IF(D31<>””,”2nd”,
IF(D32<>””,”F”,
“”))))
=IF(D29<>””,”V”,
IF(D30<>””,”1st”,
IF(D31<>””,”2nd”,
IF(D32<>””,”F”,
“”))))
Michael1105
Nov 01, 2019Brass Contributor
Twifoo Thank you!!! worked!
- TwifooNov 01, 2019Silver ContributorYou’re welcome!