do it using CSS and outputting the variable twice.
In your header or your linked CSS document define a class called 3
Code:
.3 {text-decoration: none; color: red; etc etc}
Then in you're output do this (example is cold fusion, but can easily be adapted to any other language):
Code:
<CFOUTPUT QUERY = "Queryname">
<td class = "#field1#">#field1#</td>
<td class = "#field2#">#field2</td>
etc
etc
etc
</CFOUTPUT>
This method will of course also let you define the display values if the entry is 1 or 2, if you so desire.
Bookmarks