Column A = Status = Either 'Completed', or "InProgress"
Column B =IF(A2="InProgress",NOW(),"-")
Column C =IF(A2="Complete",NOW(),"-")
When I change the status in column A to "InProgress," I need to capture the "Start Date" in column C. When I subsequently change the status for that cell to "Completed" I need to capture th "End Date" in column C while leaving the start dates as they are. Does anyone know how to write a formula that will do just that?
Status Date Started Date Completed
Completed - 4/27/2015
InProgress 4/27/2015 -
InProgress 4/27/2015 -
InProgress 4/27/2015 -
InProgress 4/27/2015 -
InProgress 4/27/2015 -
InProgress 4/27/2015 -
InProgress 4/27/2015 -
InProgress 4/27/2015 -
InProgress 4/27/2015 -
InProgress 4/27/2015 -
InProgress 4/27/2015 -
Completed - 4/27/2015
Completed - 4/27/2015
Completed - 4/27/2015
So you want Start date in both Column B and C if the status = "InProgress"?