I have not run into this before (I am not big into the cartography/map production side of things) and need a solution or confirmation that it cannot be done. Need to set symbology levels for a point Feature Class that has the levels contained in a table that gets joined to it. Basically I need to set the point symbol to a specific color (green, yellow or red) if a certain field value falls into a range of values from 2 other fields.
CurrentValue is a field in the FeatureClass, "Green" and "Red" are fields in the join table. The goal is to symbolize with this logic:
"If CurrentValue > Green.value Then set point symbol color = green"
"If CurrentValue < Red.value then set point symbol color = red"
"If CurrentValue < Green.value and > Red.value then set point symbol color = yellow"
So...
ObjectID = 1 would be symbolized with yellow point
ObjectID = 2 would be symbolized with green point
ObjectID = 3 would be symbolized with red point
Can this be accomplished? Can I reshape the data in some what to accomodate for this? Has anyone run into this scenario and come up with a solution?
Thanks!
j
Code:
ObjectID CurrentValue Green Red
1 -1.00 1.00 -2.50
2 105.00 104.5 103.50
3 -4.95 3.20 -4.90
CurrentValue is a field in the FeatureClass, "Green" and "Red" are fields in the join table. The goal is to symbolize with this logic:
"If CurrentValue > Green.value Then set point symbol color = green"
"If CurrentValue < Red.value then set point symbol color = red"
"If CurrentValue < Green.value and > Red.value then set point symbol color = yellow"
So...
ObjectID = 1 would be symbolized with yellow point
ObjectID = 2 would be symbolized with green point
ObjectID = 3 would be symbolized with red point
Can this be accomplished? Can I reshape the data in some what to accomodate for this? Has anyone run into this scenario and come up with a solution?
Thanks!
j