The easiest way is to use vbscript
After you create the table view switch to HTML view
just before the cell that displays the numeric field do this
<%
varDisplay = fp_rs("FieldName")
If varDisplay = 0 Then
varDisplay = "To be advised"
Else
varDisplay = varDisplay
End if
%>
<td>
.....
Now delete the contents of the cell and make it look like so
<td><%=varDisplay%></td>
Note --- replace FieldName with the actual field name representing the numeric field.
RCMB
Main Topics
Browse All Topics





by: JeevaPosted on 2004-06-29 at 12:45:09ID: 11429698
I shooud have said that it is FrontPage 2003 which I am using.