I'm trying to create an IF statement that relies on the data in 2 cells. Basically, if one cell is checked off and the other is empty, I want to create a formula on a new cell (which I will hide) so I can ultimately send an update request to the user to fill in the notes field. I haven't used the AND formula nor have I (successfully) used the ISBlank function. My attempt at the formula is below...
=IF(AND(Complete?1 = 1, Notes1 = ISBLANK, 1, 0))
=IF(AND(Complete?1 = 1, Notes1 = ISBLANK), "True", "False"))
Keep getting unparseable errors. Does anyone know what I'm doing wrong?