I have an Excel document that pulls in values from multiple sheets depending on a date value. I use this VLOOKUP formula to find the data:
=VLOOKUP($E$1,Data!$B$2:$N$100,2,FALSE)
The formula works perfectly fine as long as the E1 value is any date before December 1st, 2019, formatted as 12/1/2019. The "Data" sheet is set up like so:
Month Date Users 11/1/2019 | 43770 | 143,015 | ... 12/1/2019 | 43800 | 78,410 | ...
Stepping through the formula, it evaluates to:
VLOOKUP(43800,Data!$B$2:$N$100,2,FALSE)
With any date in December 2019 or later, Excel throws a "Value not found error". Which doesn't make sense to me since 43800 can be found in the data. Toggling the E1 date back to 11/1/2019 works just fine. I have no idea how to fix it or what the root cause even is.