Caly
Board Regular
- Joined
- Jul 19, 2015
- Messages
- 160
- Office Version
- 365
- 2013
- 2011
- 2010
- 2007
- Platform
- Windows
Hi I have two sets of criteria and looking to match the answer based on that using index match. How can I do that?
Example
I have a chart in a separate tab with ranges for cost and then associated percent values based on categories
Col A. Col B. Col C. ColD. ColE
Seq. Cost Start. Cost End. Apple. Pear
1. $0.00. $2.00. 2%. 3%
2. $2.01. $5.00. 4%. 5%
I want to write a formula that will provide the percent values from columns D and E of the values match for Apple or Pear based on the cost of the item
So if for example I need to know the percent value for Apple if the cost is $2.10, I want the resulting answer to say 4%
I was trying to write the formula like this but getting a #ref value
=index($d$2:$e4, match(“apple”,$d$1:$e$1,0), match(“2.10”,$b$2:$b4,1))
Example
I have a chart in a separate tab with ranges for cost and then associated percent values based on categories
Col A. Col B. Col C. ColD. ColE
Seq. Cost Start. Cost End. Apple. Pear
1. $0.00. $2.00. 2%. 3%
2. $2.01. $5.00. 4%. 5%
I want to write a formula that will provide the percent values from columns D and E of the values match for Apple or Pear based on the cost of the item
So if for example I need to know the percent value for Apple if the cost is $2.10, I want the resulting answer to say 4%
I was trying to write the formula like this but getting a #ref value
=index($d$2:$e4, match(“apple”,$d$1:$e$1,0), match(“2.10”,$b$2:$b4,1))