Skip to content

Instantly share code, notes, and snippets.

@nchambe
Last active May 6, 2019 21:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nchambe/8c539754856c53e74992df9239d6cb45 to your computer and use it in GitHub Desktop.
Save nchambe/8c539754856c53e74992df9239d6cb45 to your computer and use it in GitHub Desktop.
Stoplight Status Indicators
<style>
.ms-vh-div[DisplayName="Cost"],.ms-vh-div[DisplayName="Scope"],.ms-vh-div[DisplayName="Time"],.ms-vh-div[DisplayName="Overall"] {
font-size:15px;
font-weight:bold;
font-color:black;
text-align:center;
}
.ms-vh-div[DisplayName="Edit"]
{display:none;}
</style>
="<DIV style='font-weight:bold; font-size:40px; color:"&CHOOSE(LEFT([Cost KPI],1),"green","yellow","orange","red")&";'>●</DIV>"
=IF([Overall KPI]="1 - Green","<img src='https://sharepoint.contoso.org/SiteAssets/Green.gif' border='0'/>",IF([Overall KPI]="2 - Yellow","<img src='https://sharepoint.contoso.org/SiteAssets/Yellow.gif' border='0'/>",IF([Overall KPI]="3 - Orange","<img src='https://sharepoint.contoso.org/SiteAssets/Orange.gif' border='0'/>",IF([Overall KPI]="4 - Red","<img src='https://sharepoint.contoso.org/SiteAssets/Red.gif' border='0'/>",""))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment