Hi
I have drawn up a draft table of the spreadsheet I am currently working on. The formula in D3 works perfectly fine, it gives me a value of the number of days taken to resolve the incident. However, until the incident is open and there is no date in Cell B3 I need to check how long has the incident been open for in C3. The formula below gives me just that but I want it to be blank if the incident has been resolved. In Cell C4 I have shown the result of the formula if I drag the formula down.
I would be grateful if someone could help me with this please.
Thank you in advance.
[TABLE="width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]A[/TD]
[TD]B[/TD]
[TD]C[/TD]
[TD]D[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]=Today()[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]Date Incident Sent[/TD]
[TD]Date Resolved[/TD]
[TD]No. Days Since Incident Sent[/TD]
[TD]No. Days to Resolve Incident[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]10/07/15[/TD]
[TD]18/07/15[/TD]
[TD]=IF(ISBLANK(D3)="","",DATEDIF(A3,A$1,"d"))[/TD]
[TD]=IF(ISBLANK(B3), " ", DATEDIF(A3,B3,"d"))[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD][/TD]
[TD][/TD]
[TD]42206[/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
I have drawn up a draft table of the spreadsheet I am currently working on. The formula in D3 works perfectly fine, it gives me a value of the number of days taken to resolve the incident. However, until the incident is open and there is no date in Cell B3 I need to check how long has the incident been open for in C3. The formula below gives me just that but I want it to be blank if the incident has been resolved. In Cell C4 I have shown the result of the formula if I drag the formula down.
I would be grateful if someone could help me with this please.
Thank you in advance.
[TABLE="width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]A[/TD]
[TD]B[/TD]
[TD]C[/TD]
[TD]D[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]=Today()[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]Date Incident Sent[/TD]
[TD]Date Resolved[/TD]
[TD]No. Days Since Incident Sent[/TD]
[TD]No. Days to Resolve Incident[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]10/07/15[/TD]
[TD]18/07/15[/TD]
[TD]=IF(ISBLANK(D3)="","",DATEDIF(A3,A$1,"d"))[/TD]
[TD]=IF(ISBLANK(B3), " ", DATEDIF(A3,B3,"d"))[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD][/TD]
[TD][/TD]
[TD]42206[/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]