JenLatkowski
7 years agoQrew Member
Formula-Text with multiple results in various color
I have a list field called Status which I am using to display a message (in color) at the top of a page.
My formula looks to Status field and when a status of "x" is found it displays "y" (an example is below).
I want to change the font size and color on the "y" value.
For example; when the Status is O-Pending, I want "Not Started" to be displayed on my form in Red and have a font size of 140% the normal font size.
I am fairly new to this and would appreciate any help that can be provided!
If(
[Status]="O-Pending","Not Started",
[Status]="O-Assigned","Open",
[Status]="O-HOLD", "On Hold",
[Status]="C-Closed-Request Complete", "Closed")
My formula looks to Status field and when a status of "x" is found it displays "y" (an example is below).
I want to change the font size and color on the "y" value.
For example; when the Status is O-Pending, I want "Not Started" to be displayed on my form in Red and have a font size of 140% the normal font size.
I am fairly new to this and would appreciate any help that can be provided!
If(
[Status]="O-Pending","Not Started",
[Status]="O-Assigned","Open",
[Status]="O-HOLD", "On Hold",
[Status]="C-Closed-Request Complete", "Closed")