SOLVED

Updating Cell Value Automatically Based on Multiple Cell's Date

Copper Contributor

Hello!

I am attempting something that I'm not quite sure is possible. The goal would be for the cell in D7 to update automatically based on the the information in cells E7, F7, and G7. Ideally, would what happen is that if one of these cells is blank, the status will update to "Incomplete," where 

 

busymamabee_0-1660424152941.png

 

6 Replies

@busymamabee 

Enter the following formula in D7:

=IF(OR(E7:G7=""),"Incomplete","")
Thank you! Is there a way to expand the formula so that it only kicks into gear after the date listed in C8?

I tried =If(TODAY()>DATEVALUE(C8)(OR(E8:G8=""),"Incomplete","Complete") but it's coming back with an error.

@busymamabee 

 

=IF(AND(TODAY()>C7,OR(E7:G7="")),"Incomplete","")

@Hans Vogelaar 

 

It seems like this is freezing the result to "Complete" now regardless of the date or if the other cells have anything populated or not. 

 

The formula I have written is: 

=IF(AND(TODAY()>C8,OR(E8:G8="")), "Incomplete","Complete")

 

busymamabee_0-1660569241009.png

 

best response confirmed by VI_Migration (Silver Contributor)
Solution

@busymamabee 

 

=IF(TODAY()>C8,IF(OR(E8:G8=""),"Incomplete","Complete"),"")

Amazing - thank you so much!
1 best response

Accepted Solutions
best response confirmed by VI_Migration (Silver Contributor)
Solution

@busymamabee 

 

=IF(TODAY()>C8,IF(OR(E8:G8=""),"Incomplete","Complete"),"")

View solution in original post