Hi @Sam_Giovenco - a simple solution to this uses a formula:
IF(
FIND('open', LOWER(Notes)) > 0,
'Open',
IF(
FIND('closed', LOWER(Notes)) > 0,
'Closed'
)
)
![Screenshot 2020-11-25 at 22.10.39 Screenshot 2020-11-25 at 22.10.39](/t5/image/serverpage/image-id/14325iD6637ACD2850947D/image-size/large?v=v2&px=999)
You could extend this to a few more words without much trouble. You might get some weird edge cases if, for example, the Notes field contains “open” and “closed”. In my formula above, this record would show as “Open” as this is the first condition that resolves to true, which might not be what you want.