I have a workbook (tracker) with a “Main Sheet” where all of the user data is entered. I want some of the information to roll up into my “Program Status” worksheet.
Cell D16 has a simple formula to pull a date from the “Main Sheet”
D16=’Mainsheet’!K2
In column A I have 2 years of monthly dates created by a formula
A20=’Mainsheet’!G2+30
A21=’Mainsheet’!G2+60
A22=’Mainsheet’!G2+90 etc. spanning 2 years
I want all of the cells in column A to validate whether they match the “LQR” date that is in D16 or the “SOP” date in cell F16. I thought it would be simple like this…
=IF(A20=D16,"LQR",IF(A20=F16,"SOP","N/A"))
I think the problem is that the cells don’t match because they are both formulas. I really want the result of A20, A21…etc.
Cell D16 has a simple formula to pull a date from the “Main Sheet”
D16=’Mainsheet’!K2
In column A I have 2 years of monthly dates created by a formula
A20=’Mainsheet’!G2+30
A21=’Mainsheet’!G2+60
A22=’Mainsheet’!G2+90 etc. spanning 2 years
I want all of the cells in column A to validate whether they match the “LQR” date that is in D16 or the “SOP” date in cell F16. I thought it would be simple like this…
=IF(A20=D16,"LQR",IF(A20=F16,"SOP","N/A"))
I think the problem is that the cells don’t match because they are both formulas. I really want the result of A20, A21…etc.