Hello - I am trying to use index match to locate values based on two criteria. The column I want to return is return. I need to match this to a specific date, a fund name and a currency. Thus, there are three different criteria that needs to be met in order to match the right data. Here is the reference data:
Date Class FX Return
3-Jan-12 AUC USD 1
3-Jan-12 BUC USD 11
3-Jan-12 CGE USD 12
3-Jan-12 DSE USD 13
3-Jan-12 DSE SGD 16
3-Jan-12 ESC SGD 39
3-Jan-12 ESC USD 37
4-Jan-12 AUC USD 11
4-Jan-12 BUC USD 15
4-Jan-12 CGE USD 65
4-Jan-12 CGE GBP 62
4-Jan-12 DSE SGD 16
4-Jan-12 DSE USD 12
4-Jan-12 ESC SGD 94
4-Jan-12 ESC USD 72
5-Jan-12 AUC USD 11
Here is the output criteria:
CGE CGE BUC
USD GBP USD
1/3/2012 12 62 11
1/4/2012 65 15
Essentially, I need to index return and match the values based on the date, class and FX. Any thoughts?
Date Class FX Return
3-Jan-12 AUC USD 1
3-Jan-12 BUC USD 11
3-Jan-12 CGE USD 12
3-Jan-12 DSE USD 13
3-Jan-12 DSE SGD 16
3-Jan-12 ESC SGD 39
3-Jan-12 ESC USD 37
4-Jan-12 AUC USD 11
4-Jan-12 BUC USD 15
4-Jan-12 CGE USD 65
4-Jan-12 CGE GBP 62
4-Jan-12 DSE SGD 16
4-Jan-12 DSE USD 12
4-Jan-12 ESC SGD 94
4-Jan-12 ESC USD 72
5-Jan-12 AUC USD 11
Here is the output criteria:
CGE CGE BUC
USD GBP USD
1/3/2012 12 62 11
1/4/2012 65 15
Essentially, I need to index return and match the values based on the date, class and FX. Any thoughts?