Forum Discussion
Brad_C43
Mar 26, 2025Copper Contributor
Trying to pull a matching value to then use in another equation
Hi all, I am attempting to pull a matching value from the two columns seen below (this value then needs to be used in another equation), but cannot seem to figure out how to do it. All the thing...
- Mar 27, 2025
On legacy Excel for such sample
enter in E3 formula
=IFERROR( AGGREGATE(15,6, (ROW($B$3:$B$10) - ROW($B$2))/ISNUMBER( MATCH( $B$3:$B$10, $C$3:$C$6, 0)), ROW() - ROW($E$2) ), "" )and drag it down till empty cells appear. Be sure first list is longer than second one.
Brad_C43
Mar 27, 2025Copper Contributor
Hi Sergei, thanks for your response. Is there another method for achieving this as the version of excel I'm using doesn't support the "tocol" function?
SergeiBaklan
Mar 27, 2025Diamond Contributor
On legacy Excel for such sample
enter in E3 formula
=IFERROR( AGGREGATE(15,6, (ROW($B$3:$B$10) - ROW($B$2))/ISNUMBER( MATCH( $B$3:$B$10, $C$3:$C$6, 0)), ROW() - ROW($E$2) ), "" )
and drag it down till empty cells appear. Be sure first list is longer than second one.
- Brad_C43Mar 27, 2025Copper Contributor
It works! Thank you very much for your help
- SergeiBaklanMar 27, 2025Diamond Contributor
You are welcome