Forum Discussion
DanielAtGSU
Apr 25, 2022Copper Contributor
Help: IF Statement for Multiple Date Ranges
I have a column of dates (A) and a blank column (B) that I'm looking to populate with specific text based on the date in A. For example, if the date in A1 falls between (>=) 8/28/17 and (<) 8/27/18, ...
- Apr 25, 2022
Excel treats 8/28/17 as a calculation: 8 divided by 28 divided by 17.
Replace 8/28/17 with DATE(2017,8,28) and similarly for the other dates in your formula.
HansVogelaar
Apr 25, 2022MVP
Excel treats 8/28/17 as a calculation: 8 divided by 28 divided by 17.
Replace 8/28/17 with DATE(2017,8,28) and similarly for the other dates in your formula.
DanielAtGSU
Apr 25, 2022Copper Contributor
Thank you!!!