I'd like to have a Yes/No column that rather than showing the usual text ("Yes"/"No"), shows an icon - say green or red.
I know I can create another column (a calculated one) with a formula that depends on the value the value of the first column, something along these lines
="<center>" & IF([Status]="Yes";"<img src='/_layouts/images/yes.gif' border='0'/>";
ELSEIF([Status]="No";"<img src='/_layouts/images/no.GIF' border='0'/>";
But this solution effectively requires two columns: one for the users to update (the yes/no column), and another that shows the related icon. Is there a way to directly show the icons in the yes/no column?