Forum Discussion
GauravSharma3
9 years agoQrew Commander
HI Chris,
Please create a formula text field and turn on the Allow some HTML tags to be inserted option in the field.
Use this formula:
Case([Field1],"red", "<img src=\"https://images.quickbase.com/si/16/227-rect_red.png\"; title=\"red\">",
"blue", "<img src=\"https://images.quickbase.com/si/16/230-rect_blue.png\"; title=\"blue\">",
"green","<img src=\"https://images.quickbase.com/si/16/228-rect_green.png\"; title=\"green\">")
Please let me know if you need any further help.
Thanks,
Gaurav
Please create a formula text field and turn on the Allow some HTML tags to be inserted option in the field.
Use this formula:
Case([Field1],"red", "<img src=\"https://images.quickbase.com/si/16/227-rect_red.png\"; title=\"red\">",
"blue", "<img src=\"https://images.quickbase.com/si/16/230-rect_blue.png\"; title=\"blue\">",
"green","<img src=\"https://images.quickbase.com/si/16/228-rect_green.png\"; title=\"green\">")
Please let me know if you need any further help.
Thanks,
Gaurav
_anomDiebolt_
9 years agoQrew Elite
Get in the habit of putting formulas within a <pre> tag:
Case([Field1], "red", "<img src=\"https://images.quickbase.com/si/16/227-rect_red.png\"; title=\"red\">",
"blue", "<img src=\"https://images.quickbase.com/si/16/230-rect_blue.png\"; title=\"blue\">",
"green","<img src=\"https://images.quickbase.com/si/16/228-rect_green.png\"; title=\"green\">" )