I have a formula in an Excel 2010 workbook that wasn't generated by me that is causing me some confusion. I'm not real familiar with using the VLOOKUP formula so if anyone can help that would be much appreciated.
I have a worksheet that is calculating planned start dates using a VLOOKUP formula pointed to our financial calendar worksheet:
=COUNTIFS(BSLN_Start, "> "& VLOOKUP(C21, Monthly_Calendar, 2, FALSE), BSLN_Start, "< " & VLOOKUP(C21, Monthly_Calendar, 3, FALSE), Milestone, "=No", Summary, "=No")
The Calendar worksheet contains a list of data fields that defines our financial reporting calendar using the following columns, Ex.
W/E Date Month Year Year/WK
A typical record would show:
1/5/2001 January 2001 01/2001
1/12/2001 January 2001 02/2001
Now I want the formula to count a record every time the baseline_start date is > the start of our reporting period and <= the end of our reporting period. How is the VLOOKUP formula figuring out the start/end dates of my reporting period?