Is there a way to search according to the assigned color of a record? I assign a color to certain records that are hard to define otherwise. Now I would like to do a search of all my yellow records and orange records. Is that possible? Thanks!
There’s no function for searching based on colour.
If you need something like that, then you will have to use coloured Pick List values. Then you can search the values that have colours for them.
Or maybe use a field script that uses record.getRecordColor()
:
function RecordColor() {
return record.getRecordColor()
}
RecordColor();
Now you have a hex value that you can search on.
Ah that’s a good idea. I never thought of that :)