Using CCK, I have set up my site so that one of three colors can be assigned to a node (Red, Yellow or Blue).

Is there any way I can change these colour values of the node on a mass scale.
E.g. Change all the 'red' nodes to 'blue' without having to edit each red node individually.

Comments

mooffie’s picture

I don't know of a module that does this. You can do this directly in SQL, e.g. update {table-name-here} set field_color_value = 'blue' where field_color_value = 'red';