I have a following reference table that I am using to extract the values
Table 1:
Name Jan Feb Mar Apr Total John 0.1 0.2 0.3 0.4 1 Peter 0.2 0.4 0.6 0.3 1.5 Suman 0.1 0.3 0.2 0.5 1.1
into this table-
Table 2:
Name Month Value John Feb Peter Apr Suman Jan
I need to match the text in "Name" column of Table 2 with the text in "Name" column in Table 1..and match the text in "Month" column of Table 2 with the Column Name itself in Table 1 to return the value for that particular column name
For example:
Match value "John" in Table 2 with value "John" in Table 1 Match value "Feb" in Table 2 with Column Name "Feb" in Table 2 to return the value 0.2 from Table 1
Can this be done using Index-Match using multiple criteria?