I have asked this before, but I just cannot get it to work. I am running a report with the first column, field name is F7. It contains a series of numbers which I which for the numbers to turn red when they exceed the number 7. Here is what I have now in the footer, but it does not work:
<br /> <SCRIPT LANGUAGE="JavaScript"> var elems = document.getElementsByTagName("F7"); for (var i=0, m=elems.length; i<m; i++) { if (elems.innerHTML>7) { elems.style.color="red";} } </SCRIPT>
It would be even better if I could change the background color to yellow