Hey Gang.
I'm wondering what the most efficient approach would be
On another sheet, I have a value
I want to return the Account Tier Name based on what range that value falls between
So let's say I have a cell that I enter the value $2,500 (Let's call that Cell A1)
I need it to scan the below table:
<style type="text/css"><!--br {mso-data-placement:same-cell;}--></style>[TABLE="width: 0"]
<colgroup><col style="width: 169px"><col width="126"><col width="126"><col width="126"></colgroup><tbody>[TR]
[TD="bgcolor: #C9DAF8"]Account Tiers (Column B)[/TD]
[TD="bgcolor: #C9DAF8"]Low (Column C)[/TD]
[TD="bgcolor: #C9DAF8"]High (Column D)[/TD]
[TD="bgcolor: #C9DAF8"][/TD]
[/TR]
[TR]
[TD]Tier 1[/TD]
[TD="align: right"]$10,000[/TD]
[TD="align: right"]$9,999,999,999[/TD]
[TD="align: right"][/TD]
[/TR]
[TR]
[TD]Tier 2[/TD]
[TD="align: right"]$4,000[/TD]
[TD="align: right"]$9,999[/TD]
[TD="align: right"][/TD]
[/TR]
[TR]
[TD]Tier 3[/TD]
[TD="align: right"]$2,000[/TD]
[TD="align: right"]$3,999[/TD]
[TD="align: right"][/TD]
[/TR]
[TR]
[TD]Tier 4[/TD]
[TD="align: right"]$0[/TD]
[TD="align: right"]$1,999[/TD]
[TD="align: right"][/TD]
[/TR]
</tbody>[/TABLE]
And Return "Tier 3" in the cell holding the formula
Entering $6,000 would return Tier 2 (and so on).
I'm sure I can write a long formula with 4 different IF statements, but wondered if there was a more efficient way?
Or if there's not... what is the best syntax to go with?
Thanks so much
-Dave
I'm wondering what the most efficient approach would be
On another sheet, I have a value
I want to return the Account Tier Name based on what range that value falls between
So let's say I have a cell that I enter the value $2,500 (Let's call that Cell A1)
I need it to scan the below table:
<style type="text/css"><!--br {mso-data-placement:same-cell;}--></style>[TABLE="width: 0"]
<colgroup><col style="width: 169px"><col width="126"><col width="126"><col width="126"></colgroup><tbody>[TR]
[TD="bgcolor: #C9DAF8"]Account Tiers (Column B)[/TD]
[TD="bgcolor: #C9DAF8"]Low (Column C)[/TD]
[TD="bgcolor: #C9DAF8"]High (Column D)[/TD]
[TD="bgcolor: #C9DAF8"][/TD]
[/TR]
[TR]
[TD]Tier 1[/TD]
[TD="align: right"]$10,000[/TD]
[TD="align: right"]$9,999,999,999[/TD]
[TD="align: right"][/TD]
[/TR]
[TR]
[TD]Tier 2[/TD]
[TD="align: right"]$4,000[/TD]
[TD="align: right"]$9,999[/TD]
[TD="align: right"][/TD]
[/TR]
[TR]
[TD]Tier 3[/TD]
[TD="align: right"]$2,000[/TD]
[TD="align: right"]$3,999[/TD]
[TD="align: right"][/TD]
[/TR]
[TR]
[TD]Tier 4[/TD]
[TD="align: right"]$0[/TD]
[TD="align: right"]$1,999[/TD]
[TD="align: right"][/TD]
[/TR]
</tbody>[/TABLE]
And Return "Tier 3" in the cell holding the formula
Entering $6,000 would return Tier 2 (and so on).
I'm sure I can write a long formula with 4 different IF statements, but wondered if there was a more efficient way?
Or if there's not... what is the best syntax to go with?
Thanks so much
-Dave