EverettPatterso
6 years agoQrew Captain
Re: Intro & Queries - Warner Bros. International TV Production
Hi Adam, welcome and glad you are part of our amazing community.
------------------------------
Everett Patterson
------------------------------
For Task 1, you could make a status multiple choice field and formula rich text field. You would have to update the status field manually or, write a formula, and/or use Automations to determine what is New and what is Updated. You may want something more automated if you have alot of users and/or reports.
(Formula Rich Text)
var text mystatus = [Status]; Case($mystatus, "NEW", "<div style='color: #fff !important; background-color: #2ca01c; display: inline-block; border-radius: 4px; padding: 0.5em 1em .5em .75em; margin: 0.5em; border: 1px solid #2ca01c; text-decoration: none;'>NEW</div>", "UPDATED", "<div style='color: #fff !important; background-color: #FFB749; display: inline-block; border-radius: 4px; padding: 0.5em 1em .5em .75em; margin: 0.5em; border: 1px solid #FFB749; text-decoration: none;'>UPDATED</div>")
------------------------------
Everett Patterson
------------------------------