I've seen a number of similar posts about this but I still can't seem to figure it out based upon those examples...
I have an "HTML Text" field that concats some selected items from a combo box (connected to a Share Point data source)
The code I am using (which works) displays the selected items as text and looks at the value of another column to see if it is "rare"... It ends up looking like:
Shell A | Rare: Shell B | Shell C |
What I would like to do is to change the color of the selected item and the word "Rare: " to a bold red but I can't figure out if and where to put the HTML tags. Ideally I am looking to create this:
Shell A | Rare: Shell B | Shell C |
Concat(ShellsDropdown_1.SelectedItems, If('RARE'.Value = "YES", "Rare ") & " " & Title & " | ")
Is this possible? Any suggestions?