Forum Discussion
StantonSmith
Sep 05, 2021Copper Contributor
Automatic entries in cells based on a date range
Looking for help creating a formula that will do the following - Column A is start date Column B is an end date Column C is a number The rest of the columns are dates that I want the number in c...
- Sep 05, 2021
In D2:
=IF(AND(D$1>=$A2,D$1<=$B2),$C2,"")
Fill down and to the right (or vice versa).
See the attached workbook.
HansVogelaar
Sep 05, 2021MVP
In D2:
=IF(AND(D$1>=$A2,D$1<=$B2),$C2,"")
Fill down and to the right (or vice versa).
See the attached workbook.
- StantonSmithSep 05, 2021Copper Contributor
Thanks so much! saved me a lot of time