ADD KEY Process Indicators (KPI) to SharePoint list :
steps to make indicator coloum :
add a new calculated column to you list :
add the three indicators icons to site asserts document library and use them from there.
add the formula as below :
=IF([complete %]<10,"<img src='http://yoursiteurl/sites/name/SiteAssets/indicator_button.png' alt='red' height='22' width='22'>",
IF(AND([complete %]>9,[complete %]<50),"<img src='http://yoursiteurl/sites/name/SiteAssets/yellow.jpg' alt='yellow' height='22' width='22'>",
IF([complete %]>50,"<img src='http://yoursiteurl/sites/name/SiteAssets/green.jpg' alt='green' height='22' width='22'>",)))
ADD more if conditions basing on you requirement.
my assumption for conditions
red<10
10>yellow<50
green>50
steps to make indicator coloum :
add a new calculated column to you list :
add the three indicators icons to site asserts document library and use them from there.
add the formula as below :
=IF([complete %]<10,"<img src='http://yoursiteurl/sites/name/SiteAssets/indicator_button.png' alt='red' height='22' width='22'>",
IF(AND([complete %]>9,[complete %]<50),"<img src='http://yoursiteurl/sites/name/SiteAssets/yellow.jpg' alt='yellow' height='22' width='22'>",
IF([complete %]>50,"<img src='http://yoursiteurl/sites/name/SiteAssets/green.jpg' alt='green' height='22' width='22'>",)))
ADD more if conditions basing on you requirement.
my assumption for conditions
red<10
10>yellow<50
green>50


Comments
Post a Comment