Creating a consolidated column

Shamash

New Member
Joined
Sep 6, 2021
Messages
2
Office Version
  1. 365
Platform
  1. Windows
Hello folks,

I want to create a consolidated column by utilising a forecast and actual dates column for a specific task , if a task is actualised the consolidated column show the date from actualised column otherwise it should keep showing the dates from forecast column so far it sounds simple and can be achievable using if else statements though the complexity is added when I want to conditionally format the cell in the consolidated table as green if it is actualised , use color red when the forecast date is overdue and use color orange when the forecast date is upcoming in the next 7 days.Any guidance in how to achieve it in one consolidated column is much appreciated.
 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
Welcome to MrExcel Message Board.
Please upload Example Data with XL2BB Add-in (Preferable). Or Upload it to Free Hosting Site e.g. GoogleDrive, OneDrive, DropBox and ... then Insert Link here.
 
Upvote 0
How about:
At Conditional formatting menu Select New Rule, then Select Use a formula to Determine ...
Book1
ABCDE
1TasksForecasing DateActual DateConsolidate Date
2TK17/22/20217/25/20217/25/2021
3TK27/29/20217/28/20217/28/2021
4TK38/5/20218/11/20218/11/2021
5TK48/12/20218/22/20218/22/2021
6TK58/19/20218/24/20218/24/2021
7TK68/26/20219/1/20219/1/2021
8TK79/2/20219/2/2021
9TK89/6/20219/6/2021
10TK99/9/20219/9/2021
11TK109/11/20219/11/2021
12TK119/14/20219/14/2021
13TK129/17/20219/17/2021
14TK139/20/20219/20/2021
15
Sheet1
Cell Formulas
RangeFormula
D2:D14D2=IF(C2="",B2,C2)
Cells with Conditional Formatting
CellConditionCell FormatStop If True
D2:D14Expression=AND($D2-TODAY()>0,$D2-TODAY()<7,C2="")textNO
D2:D14Expression=AND($D2<TODAY(),C2="")textNO
D2:D14Expression=$C2=$D2textNO
 
Upvote 0
Thanks, I was looking for some guidance in PBI to implement this scenario.
 
Upvote 0

Forum statistics

Threads
1,223,701
Messages
6,173,916
Members
452,538
Latest member
ralphtaylor466

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