Hi @bowesmana , @ITWhisperer , Ok this method works fine, I'll explain what I did. first I created a multivalue field with "sex, and S_n_mm" fields. | eval value=mvappend(sex,'S_N mm') after this I created the condition directly on the XML code dashboard. <format type="color" field="value">
<colorPalette type="expression">case(mvindex(value, 1) >"79" AND mvindex(value, 0) == "male","#00FF00",mvindex(value, 1) >"74" AND mvindex(value, 0) == "female","#00FF00")</colorPalette>
</format>
... View more