Find changes in worksheet caused by formulas based on date values

SpencerRichman

New Member
Joined
Feb 15, 2013
Messages
33
Office Version
  1. 2021
Platform
  1. Windows
I have a worksheet with a column called "Hire Date".
I have another column called "90-Day Pay Raise", which has a formula that simply adds 90 to the Hire Date, and is blank if the current date is less than 90 days and displays "Pay Raise Due" if => 90 days since the Hire date.
However, the worksheet has so many rows (employees) that it's not easily apparent which rows that show "Pay Raise Due" are NEW since the last time I opened the Excel workbook.
I have added a field at the top - showing "date this workbook was last opened".
I usually visit this workbook once or twice a week.
But I can't figure out how to have Excel tell me automatically which employee rows have passed that 90-day mark since the last time I opened the workbook.
Any suggestions would be appreciated!
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
Two things,
Firstly, what version of Excel are you using, and could you update your account to show this, so we know
Secondly, are you able to post some data?
 
Upvote 0
Two things,
Firstly, what version of Excel are you using, and could you update your account to show this, so we know
Secondly, are you able to post some data?
Yes, thanks. I updated my profile. I am using Office 2021 Windows desktop version. Here is a snapshot of the worksheet:
Capture.JPG


I have this formula in column F which makes it display "Pay Raise" once they are a full 3 months past their hire date: =IF((D3+60)<TODAY(),IF(C3="Floor Staff","Pay Raise",""),"")

But my problem is that when I open the worksheet, I have no way to tell which cells in column F are NEW since the last time I opened the workbook.
As you can see in Row 1 I added the Date this Worksheet was Last Opened and Today's Date, but I don't know if or how I can use that information to have Excel tell me which cells in column F are new Pay Raise notices.
Thanks.
 
Upvote 0
I assume that you marki it in some way to say the "Pay Rise" has been dealt with? Looking at this and to keep it as simple as possible, I would make use of Column G as a marker column.

So the fourmula could be

=IF(AND(D3+60<TODAY(),C3="Floor Staff",G3=""),"Pay Raise","")

I have put the AND to save the need for a nested IF.
 
Upvote 0
I assume that you marki it in some way to say the "Pay Rise" has been dealt with? Looking at this and to keep it as simple as possible, I would make use of Column G as a marker column.

So the fourmula could be

=IF(AND(D3+60<TODAY(),C3="Floor Staff",G3=""),"Pay Raise","")

I have put the AND to save the need for a nested IF.
Thank you Skybluekid, but I already have a similar formula that works to fill in column F with "Pay Raise". But when I open the worksheet there are already a whole bunch of "Pay Raises" filled in on column F. What I need is some way for Excel to tell me if there are any NEW "Pay Raises" filled in on column F since the last time I opened Excel so that I'll know if I have to change anyone's pay rate who I haven't already changed before.
 
Upvote 0
I understand what you are saying. When a Pay Raise flag appears, which is triggered by the date and whether it is floor staff, do you mark that row to say that the Pay Raise has been completed? As by looking at the picture, there is an 'x' in column G.
So with that in mind, the formula that I have proposed uses that x in Column G to turn off the Pay Raise in F. So, when you open the work book, the cell value will be blank as the last condiotion will be false, ie G3 will see an 'x', and only new vaule will so Pay Rise.
 
Upvote 0

Forum statistics

Threads
1,215,672
Messages
6,126,134
Members
449,294
Latest member
Jitesh_Sharma

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