<cfoutput query="TBCResult">
.... bla..
<td>
<cfif #vComply# eq "Compliant">
<font color="0000FF">#vComply#</font> #Results#
<cfelseif #vComply# eq "Concurrent">
<font color="990000">#vComply#</font> #Results#
<cfelse>
<font color="FF0000">#vComply#</font> #Results#
</cfif>
</td>
</tr>
.. bla...
</cfoutput>
Is there a way to count #vComply# into three categories, "Compliant, Concurrent, Non-Compliant" and cfset so that I can display the sub-total of each category?
If #vComply# is not "Compliant or Concurrent", it is "Non-Compliant".
thx much
.... bla..
<td>
<cfif #vComply# eq "Compliant">
<font color="0000FF">#vComply#</font> #Results#
<cfelseif #vComply# eq "Concurrent">
<font color="990000">#vComply#</font> #Results#
<cfelse>
<font color="FF0000">#vComply#</font> #Results#
</cfif>
</td>
</tr>
.. bla...
</cfoutput>
Is there a way to count #vComply# into three categories, "Compliant, Concurrent, Non-Compliant" and cfset so that I can display the sub-total of each category?
If #vComply# is not "Compliant or Concurrent", it is "Non-Compliant".
thx much