0 I do not know JSLink, so I am struggling to figure this out. I have a drop down menu column and if the user selects one of the drop down menus (Lets say its called "Peer Review - Rushed") I would like the cell to show red, or even the whole row if need be. How do I do that? I have this which works on the modern ui: "$schema": "https://developer.microsoft.com/json-schemas/sp/column-formatting.schema.json", "elmType": "span", "debugMode": true, "txtContent": "@currentField", "style": "color": "=if(@currentField == 'Peer Review - Rushed', 'Red', if(@currentField == 'Peer Review - Slow', 'Blue', 'Black'))" sharepoint-list jslink share | improve this question edited Nov 16 '18 at 5:34 Arturas Smorgun 810 1 8 21 asked Nov 15 '18 at 23:44 Klj126 Klj126 1 1 Here...