Hi I am trying to change the font of a recordset value based on the value of the right 2 characters.
I have tried using thsi code but obviously it does not work, can someone point me in the right direction please
Regards
Paul
I have tried using thsi code but obviously it does not work, can someone point me in the right direction please
Code:
<td><%if Right(rsDebt.fields.item("RevisionMAP").value, 2,"06") then%>
<font color="#FF0000"><strong><%=(rsDebt.Fields.Item("RevisionMAP").Value)%></strong></font>
<%else%>
<font color="#000000"><%=(rsDebt.Fields.Item("RevisionMAP").Value)%></font>
<%end if%></td>
Regards
Paul