Forum Discussion
vicarma
Oct 03, 2021Copper Contributor
Providing an Availability Date
Hi, I have a task to provide the availability date for confirming Customer Orders. I have built an initial excel table with all the Demand (Customer Sales Orders) and Supply (Purchase Orders), t...
- Oct 04, 2021
something like this?
The main formula is:
=INDEX(
$C5:$H$30,
MATCH(
0,
FILTER(
$H5:$H$30,
$C5:$C$30=C5
),
0
),
2
)The rest of the formula is just to format the date
cheers
Yea_So
Oct 04, 2021Bronze Contributor
something like this?
The main formula is:
=INDEX(
$C5:$H$30,
MATCH(
0,
FILTER(
$H5:$H$30,
$C5:$C$30=C5
),
0
),
2
)
The rest of the formula is just to format the date
cheers
- vicarmaOct 04, 2021Copper ContributorYea_So
Many thanks for this and the rapid reply - it works really well, and the use of FILTER in the INDEX/MATCH is really clever.
As I mentioned in the original post, the result table is coming from a pivot table, so the length of the table can vary; is there a possibility to modify the formula so that it is dynamic for the last row (particularly if the result table is extended)?
Many thanks once again for your help.
Cheers