Search according to color record

Viewing 3 reply threads
  • Author
    Posts
  • March 6, 2022 at 6:10 PM #46942

    Lorenz Ehrsam
    Participant

    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!

    March 7, 2022 at 12:19 AM #46944

    Brendan
    Keymaster

    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.

    March 7, 2022 at 12:46 AM #46945

    Daniel Leu
    Participant

    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.

    March 7, 2022 at 1:29 AM #46947

    Brendan
    Keymaster

    Ah that’s a good idea. I never thought of that :)

Viewing 3 reply threads

You must be logged in to reply to this topic.