Conditional Formatting For an Impact report

Jager819

New Member
Joined
Jul 10, 2018
Messages
12
I am trying to make an impact report that will quickly allow a customer to quickly understand the impact of set a weeks work and any delays in their schedule. What i would like to do is make a table with Column A being the project ID, Column B to BA represent a work week, and column BB be the scheduled completion date. Each week I want to be able to add or subtract day from the schedule by using inputting a number, 0= no impact Positive numbers = a delay and days added to the schedule, and Negative numbers = high productivity and subtract days form the schedule. I want to use conditional formatting to highlight green for negative numbers or 0, red for positive. This is easy enough however i would also like to use a formula to auto correct the return date based on values entered each week. I am unsure how to accomplish this any ideas? I have included a simplified example below in case i was unclear.

Project IDWW1WW2Return Date
Work order 110/10/19
Work order 2 11/12/19
Work order 31/25/20
Work order 42/15/20

<tbody>
</tbody>
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
Maybe something like this


A
B
C
D
E
1
Project ID​
WW1​
WW2​
Return Date​
Adjusted Date​
2
Work order 1​
0​
1​
10/10/2019​
10/11/2019​
3
Work order 2​
-2​
0​
11/12/2019​
11/10/2019​
4
Work order 3​
0​
0​
01/25/2020​
01/25/2020​
5
Work order 4​
-1​
-1​
02/15/2020​
02/13/2020​

Formula in E2 copied down
=D2+SUM(B2:C2)

M.
 
Upvote 0
Wow that was a lot easier that i thought it would be. Thanks it worked great, i thought there would be a conflict between date and number formats.
 
Upvote 0
You are welcome. Thanks for the feedback.

By the way, Excel stores dates as numbers being 1 equal to the 1st Jan 1900.

M.
 
Upvote 0

Forum statistics

Threads
1,215,402
Messages
6,124,708
Members
449,182
Latest member
mrlanc20

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