Forum Discussion
keltzjd
Jul 12, 2022Brass Contributor
How can I get my cell to automatically change based on referenced date data?
Good morning all! I'm trying to get my date(s) to have correlated values and then use a reference cell to see what the assigned value should be. Please see information below as my example: ...
- Jul 12, 2022
=IFERROR(INDEX($J$2:$J$91,MATCH(1,(A2>=$K$2:$K$91)*(A2<=$L$2:$L$91),0)),"")
Maybe with this formula in cell B2. Enter the formula with ctrl+shift+enter if you don't work with Office365 or 2021.
=IFERROR(INDEX($J$2:$J$91,MATCH(1,(C2>=$K$2:$K$91)*(C2<=$L$2:$L$91),0)),"")
This is the formula in cell D2 in the example.
OliverScheurich
Jul 12, 2022Gold Contributor
=IFERROR(INDEX($J$2:$J$91,MATCH(1,(A2>=$K$2:$K$91)*(A2<=$L$2:$L$91),0)),"")
Maybe with this formula in cell B2. Enter the formula with ctrl+shift+enter if you don't work with Office365 or 2021.
=IFERROR(INDEX($J$2:$J$91,MATCH(1,(C2>=$K$2:$K$91)*(C2<=$L$2:$L$91),0)),"")
This is the formula in cell D2 in the example.
- keltzjdJul 12, 2022Brass ContributorWorked perfectly, thank you so much!