Forum Discussion
Ckeller0111
Jul 11, 2022Copper Contributor
Advanced "Lookup/Match" formula
Please help. I am struggling with the formula needed. A9 always returns "today's" date. I need cell B9 to look for today's date in row 1 and return the results of how many loads remain (which auto co...
- Jul 11, 2022
=OFFSET(INDEX($1:$1,MATCH(A9,$1:$1,0)),,8)
If the count of remaining loads is always 8 columns to the right of the date (in row 1) then you can try this formula.
OliverScheurich
Jul 11, 2022Gold Contributor
=OFFSET(INDEX($1:$1,MATCH(A9,$1:$1,0)),,8)
If the count of remaining loads is always 8 columns to the right of the date (in row 1) then you can try this formula.
- Ckeller0111Jul 11, 2022Copper Contributor
OliverScheurich it worked you are phenomenal! Thank you so much!
- OliverScheurichJul 11, 2022Gold Contributor
You are welcome. Glad my suggestion is helpful.