Schedule

BullseyeThor

Board Regular
Joined
Dec 23, 2010
Messages
84
Office Version
  1. 365
Hi Guys

Need help or really just a querie. I have a spread sheet that uses dates to keep track of things.

I also have a column that states the current progress of the stores that its used for. (Complete, Pending and In Progress).

Is there a formula that can change this cell to one of the 3 depending on the real time date.

E.G I have shop fit start and D.O.E snag End anything before the start date I need to say pending, anything between I need to say In Progresss and after D.O.E end I need, of course, complete.

I need a formula though becuase I have had to make the file a shared file so the team can access it so can't use the VBA.

Thanks
Guys
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
A nested if formula should work for you.

Why is VBA ruled out? it can still function in a shared file, you just can't edit or view the code without unsharing it.
 
Upvote 0
This sould work for a set up of A:A = Status, B:B = Start, C:C = End

It's not letting me display the formul properly, so will PM you
 
Last edited:
Upvote 0
Have sent you PM with formula on:

HTML:
=IF(TODAY()<B2,"Pending",IF(TODAY()<C2,"In Progress",IF(TODAY()>=C2,"Complete","Check Dates")))
<B2,"PENDING",IF(TODAY()<C2,"IN Progress?,IF(TODAY()>
 
Last edited:
Upvote 0

Forum statistics

Threads
1,224,503
Messages
6,179,135
Members
452,890
Latest member
Nikhil Ramesh

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