I am struggling to alter the label colours according to field values (as strings) in the attributes table.
In my mind what I want is:
If the string in column X = 'Proposed' Then label the point using the string in column Y, with color A
Else Label the point using the string in column Y, with color B End
I have tried a bit, but struggling with the syntax
case when "ownerenc" = 'Proposed'
then (color_rgb(256,256,256))
else color_rgb(56,56,0)
end
But I realise this is quite wrong! Many thanks for your suggestions.
Answer
The syntax is almost correct (see the note in the end), but you might be using it in the wrong place.
The correct way of doing it is like this.
- Label your layer using your "Column Y" field, in the example below that's field "codigo".
- go to the "text" sub-menu, color and click the data defined button;
- There choose the edit... option below Expression;
- Put the desired expression in the expression builder (in the example).
Note: The rgb() function will only accept values from 0 to 255 to the red, green and blue arguments.
No comments:
Post a Comment