Creating a Status Column

TheRins3r

New Member
Joined
Dec 12, 2016
Messages
28
Office Version
  1. 365
Platform
  1. Windows
Hi.

I want to create a column to give a status.

I was able to do so for 1 cell by creating an if/isblank statement, but don't know how to nest it

Example

Cell B4 contains a date (start date)
Status cell will update and say in progress, however if cell C4 contains a date (completed date) i want the status to change from In progress to Complete.

Any help is appreciated
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
how about

=IF(ISBLANK(C4),"In Porgress","Complete")
 
Upvote 0
=IF(B4="","",IF(AND(B4<>"",C4<>""),"Complete","In Progress"))

[
Book7
ABCD
1StartEndStatus
2
3
4 
51/1/22In Progress
6 
73/1/22In Progress
84/1/222/1/23Complete
95/1/22In Progress
Sheet1
Cell Formulas
RangeFormula
D4:D9D4=IF(B4="","",IF(AND(B4<>"",C4<>""),"Complete","In Progress"))
 
Upvote 0

Forum statistics

Threads
1,214,920
Messages
6,122,262
Members
449,075
Latest member
staticfluids

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top