Hi Pam
This may not work on all platforms so if you are using non Windows devices to view it then it wont work, but have a look at this code and see if it works for you. Remember to test with all your users devices before rolling out.
<!DOCTYPE html>
<html>
<head>
<style>
div.Background{
background:#ffffff;
}
div.Title{
background:#ffffff;
font-size: 14px;
font-weight:bold;
color: #004C76;
margin-left: 5px;
}
div.MainText{
color:#000000;
font-size:35px;
font-weight:bold;
margin-left: 5px;
}
div.YTD{
color:#000000;
font-size:12px;
font-weight:bold;
margin-left: 5px;
color: #404040;
}
Comparison{
line-height: 80%;
font-size:16px;
font-weight:bold;
margin-left: 5px;
color: #ff0000;
}
arrowfont
{ font-family: "Wingdings 3"
}
</style>
</head>
<body>
<div class="Background">
<hr size=3 color=#ff661c>
<div class="Title">
This is the title
</div>
<div class="MainText">
Main KPI Text
<Comparison>
Red
</Comparison>
<%=icon("3arrows",Cost Source Master Data.Amount<100,Cost Source Master Data.Amount<200,Cost Source Master Data.Amount>201)%>
<arrowfont>hi</arrowfont>
</div>
<div class="YTD">
This is the YTD
</div>
</div>
This is using the Icon() function. You'll need to replace the Cost Source Master Data.Amount with the logic you want to use if you are ok with the Arrow in that format.
If you want bigger arrows more like the one you have in the example then you can use Wingdings 3 font and use that, but you would need to put in something like <%=if(This month<last month,"i","h") between the <arrowfont> </arrowfont>
Ive put in the Icon() logic and the Wingdings icons so you can choose which works best for you.