leopardhawk
Well-known Member
- Joined
- May 31, 2007
- Messages
- 611
- Office Version
- 2016
- Platform
- Windows
Here is the data which I am trying to extract the dollar amount in D4 from.
Here is my formula which is returning the #N/A error. Does anyone know what I can do to resolve this? Thanks!
Excel 2016 (Windows) 32 bit | ||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | |||
1 | Tax Credit Type | Federal | NL | PE | NS | NB | ON | MB | SK | AB | BC | YT | NT | NU | ||||
2 | 15% | 8.70% | 9.80% | 8.79% | 9.68% | 5.05% | 10.80% | 10.50% | 10% | 5.06% | 6.40% | 5.90% | 4% | |||||
3 | -3 | -5 | -1 | -6 | -4 | -7 | ||||||||||||
4 | Basic personal amount (1)(5) | $12,069 | $9,414 | $9,160 | $8,481 | $10,264 | $10,582 | $9,626 | $16,065 | $19,369 | $10,682 | $12,069 | $14,811 | $16,000 | ||||
tax_credits_web |
Code:
=INDEX(D2:P4,MATCH(TRUE,ISNUMBER(SEARCH(A2:A4,basic)),0),MATCH(TRUE,ISNUMBER(SEARCH(D1:P1,Federal)),0))