Help with an IF statement: adding a word based on a blank cell

I have the formula below in the primary field so it populates more information to the calendar view. The problem I am having now is that if Assigned5 is empty it adds a gray mark to the calendar view. I would like to add Hold if the cell is empty. (Note, the cell "Assigned" is a checkbox
=IF(Assigned5 = 1, [Agency Name]5 + " (" + [Demo Team Member]5 + ") " + " [" + [Requested Start Time of Demo]5 + " - " + [Requested End Time of Demo]5 + " " + [Time Zone]5 + "]")
Best Answer
-
Did you try
=IF(Criteria, <Do this if criteria met>, "Hold"). Criteria is if the checkbox checked. While true, would be all the other stuff in your formula.
Answers
-
Did you try
=IF(Criteria, <Do this if criteria met>, "Hold"). Criteria is if the checkbox checked. While true, would be all the other stuff in your formula.
-
Thank You! That was embarrassingly simple
Help Article Resources
Categories
Check out the Formula Handbook template!