I have a page that pulls data from a database. In the Database are the following values
P - PTC (Prior To Closing)
C - AC (At Closing)
S - Suspense (Prior To Closing)
I have created the a varable which works fine to display the catagory of each letter.
I want to use the varCondType in my Order By Clause in my recordset. I am not sure how to do that.
Can anyone help???
Thanks in advance.
Nick
P - PTC (Prior To Closing)
C - AC (At Closing)
S - Suspense (Prior To Closing)
I have created the a varable which works fine to display the catagory of each letter.
Code:
<%
If (Conditions.Fields.Item("RemoveCond").Value) = "C" Then
varCondType = "AC"
else
varCondType = "PTC"
End If
%>
I want to use the varCondType in my Order By Clause in my recordset. I am not sure how to do that.
Can anyone help???
Thanks in advance.
Nick