Assume that, you have a Table1 with "First Name" "Last Name" "Sale" column and another Table2 with "Name" ("First Name" and Last Name"), "Sale" column. Now you wish to return the "Sale" quantity from Table1 to Table2 by matching "Name" (from Table2 field) with "First Name" and "Last Name" (from Table1).
Image 1: Table1 (A1:C5) and Table2 (D8:E12)
Solution:
To do this below formula can help to return the "Sale" quantity from Table1 to Table2:
=INDEX($C$2:$C$5,MATCH($D9,CONCATENATE($A$2:$A$5," ",$B$2:$B$5),0))
You will see the below result:
Image 2: Result
You can download this file from below link: