Automatic Date

Jlopez0320

New Member
Joined
Jun 17, 2024
Messages
3
Office Version
  1. 365
Platform
  1. Windows
  2. Web
Hello!

I am new to the community and Excel for anything more than hat dont require formulas. I am creating a document to track clients that I have to contact for work and want to have the "Next Follow Up" column (K) auto populate a date that is either one week past the "Referral Follow up" (I) or "Last Client Contact" (J)

I currently have this formula under column J, but any effort to have 'If K is blank, leave J blank' has been unsuccessful and gives me the date 1/7/1900 if there is nothing in column K.
=IF(J2=" "," ", DATE(YEAR(J2), MONTH(J2), DAY(J2)+7))

This is what the sheet can look like. Referral follow-up can have up to three dates, as we will have three touchpoints before exiting a client from the program.
1718663847818.png


Also! I eventually want to change the conditional formatting of the "Next Follow-up" column to change the fill color as we approach the date. Would that affect the conditional formatting of the rows? Is there an easier way to do this? Thank you again for all the help!
 

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
Formula for column K:
Why do you have two values in the first cell in the 2nd row? That can be difficult to work with. So, please explain your reasoning with how you input data into columns I and J? Are you entering DATES as a date value and not as text?

Excel Formula:
=MAX(I2,J2)+7

As far a conditional formatting, how many days warning do you want to change the color?
How big is the workbook? Will you need the conditional formatting in 1000s of cells?
 
Upvote 1
Try:
Book1
IJK
1Referral Follow upLast Client ContactNext Follow Up
26/11/2024, 6/17/2024 6/24/2024
36/4/20246/11/20246/11/2024
4 
56/10/20246/17/2024
65/6/20245/13/2024
Sheet11
Cell Formulas
RangeFormula
K2:K6K2=IF(COUNTIF(I2:J2,"<>")>0,MAX(IFERROR(--TEXTSPLIT(I2,","&CHAR(10)),J2),0)+7,"")
 
Upvote 1
The IFERROR parameter was out of order above. Redo.
Book1
IJK
1Referral Follow upLast Client ContactNext Follow Up
26/11/2024, 6/17/2024 6/24/2024
36/3/20246/11/20246/18/2024
4 
56/10/20247/10/20247/17/2024
65/6/20245/13/2024
Sheet12
Cell Formulas
RangeFormula
K2:K6K2=IF(COUNTIF(I2:J2,"<>")>0,MAX(IFERROR(--TEXTSPLIT(I2,","&CHAR(10)),0),--J2)+7,"")
 
Upvote 1
Solution
The IFERROR parameter was out of order above. Redo.
Book1
IJK
1Referral Follow upLast Client ContactNext Follow Up
26/11/2024, 6/17/2024 6/24/2024
36/3/20246/11/20246/18/2024
4 
56/10/20247/10/20247/17/2024
65/6/20245/13/2024
Sheet12
Cell Formulas
RangeFormula
K2:K6K2=IF(COUNTIF(I2:J2,"<>")>0,MAX(IFERROR(--TEXTSPLIT(I2,","&CHAR(10)),0),--J2)+7,"")
Thank you this did it!
 
Upvote 0
Formula for column K:
Why do you have two values in the first cell in the 2nd row? That can be difficult to work with. So, please explain your reasoning with how you input data into columns I and J? Are you entering DATES as a date value and not as text?

Excel Formula:
=MAX(I2,J2)+7

As far a conditional formatting, how many days warning do you want to change the color?
How big is the workbook? Will you need the conditional formatting in 1000s of cells?
There are two values because we need to have three touchpoints with a client before they are removed from this log. That column would be the the best place to track it if possible?


As for conditional formatting, I was considering three days and a different color as it gets closer to the next contact date
 
Upvote 0

Forum statistics

Threads
1,218,245
Messages
6,141,361
Members
450,352
Latest member
lohpa

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