Hi,
I’m trying to return a value from a large static table that includes a number of different parameters.
[TABLE="width: 296"]
<tbody>[TR]
[TD]Feature 1 Min|
[/TD]
[TD]Feature 1 Max|
[/TD]
[TD]Feature 2
[/TD]
[TD]|Value
[/TD]
[/TR]
[TR]
[TD][/TD]
[TD]0.1
[/TD]
[TD]A
[/TD]
[TD]1
[/TD]
[/TR]
[TR]
[TD]0.1
[/TD]
[TD]0.2
[/TD]
[TD]A
[/TD]
[TD]2
[/TD]
[/TR]
[TR]
[TD]0.2
[/TD]
[TD]0.3
[/TD]
[TD]A
[/TD]
[TD]3
[/TD]
[/TR]
[TR]
[TD][/TD]
[TD]0.1
[/TD]
[TD]B
[/TD]
[TD]4
[/TD]
[/TR]
[TR]
[TD]0.1
[/TD]
[TD]0.2
[/TD]
[TD]B
[/TD]
[TD]5
[/TD]
[/TR]
[TR]
[TD]0.2
[/TD]
[TD]0.3
[/TD]
[TD]B
[/TD]
[TD]6
[/TD]
[/TR]
</tbody>[/TABLE]
Here’s an example of the static table.
The data I’m trying to work with will give me a value for Feature 1 and for Feature 2. The value for feature 1 will lie in the range as specified in the static table, whereas Feature 2 doesn’t have that complexity.
e.g. For Feature 1 = 0.23 and Feature 2 = B I want to return ‘6’.
Any idea how to pick this up using a formula?
I’m trying to return a value from a large static table that includes a number of different parameters.
[TABLE="width: 296"]
<tbody>[TR]
[TD]Feature 1 Min|
[/TD]
[TD]Feature 1 Max|
[/TD]
[TD]Feature 2
[/TD]
[TD]|Value
[/TD]
[/TR]
[TR]
[TD][/TD]
[TD]0.1
[/TD]
[TD]A
[/TD]
[TD]1
[/TD]
[/TR]
[TR]
[TD]0.1
[/TD]
[TD]0.2
[/TD]
[TD]A
[/TD]
[TD]2
[/TD]
[/TR]
[TR]
[TD]0.2
[/TD]
[TD]0.3
[/TD]
[TD]A
[/TD]
[TD]3
[/TD]
[/TR]
[TR]
[TD][/TD]
[TD]0.1
[/TD]
[TD]B
[/TD]
[TD]4
[/TD]
[/TR]
[TR]
[TD]0.1
[/TD]
[TD]0.2
[/TD]
[TD]B
[/TD]
[TD]5
[/TD]
[/TR]
[TR]
[TD]0.2
[/TD]
[TD]0.3
[/TD]
[TD]B
[/TD]
[TD]6
[/TD]
[/TR]
</tbody>[/TABLE]
Here’s an example of the static table.
The data I’m trying to work with will give me a value for Feature 1 and for Feature 2. The value for feature 1 will lie in the range as specified in the static table, whereas Feature 2 doesn’t have that complexity.
e.g. For Feature 1 = 0.23 and Feature 2 = B I want to return ‘6’.
Any idea how to pick this up using a formula?