SOLVED

Populating a cell when other cells are populated/not populated

Copper Contributor

Hi. I was wondering if someone could help me.


I’m trying to populate a cell with the word “Completed” on the condition that 4 other cells are populated (Not Blank).

 

However, I want this same cell to be populated with “Not Completed” on the condition that 1 or more of the 4 cells, previously mentioned, are not populated (Blank).

 

If anyone knows how to do this, please let me know. Thanks

1 Reply
best response confirmed by JoeLangley12 (Copper Contributor)
Solution

@JoeLangley12 

=IF(COUNTBLANK(A2:D2)>0,"not completed","completed")

You can try this formula.

completed.JPG

1 best response

Accepted Solutions
best response confirmed by JoeLangley12 (Copper Contributor)
Solution

@JoeLangley12 

=IF(COUNTBLANK(A2:D2)>0,"not completed","completed")

You can try this formula.

completed.JPG

View solution in original post