terawebwriter
Programmer
How would you get a Division to return only 2 numbers. For example, if you want to divide 2 totals and than return only 2 numbers instead of (EX)1.32398795094, how would you do that. This is my code:
<%
Dim T1
T1 = Total1 / Total2
Response.Write (T1)
%>%
Yes, there is a second % sign after the ASP code. Reason I want the number to end up being a % of a whole.
Ex:
Say, 5 departments, each one completed 20%, 30%, 10%, 10%, 30%, something like that.
<%
Dim T1
T1 = Total1 / Total2
Response.Write (T1)
%>%
Yes, there is a second % sign after the ASP code. Reason I want the number to end up being a % of a whole.
Ex:
Say, 5 departments, each one completed 20%, 30%, 10%, 10%, 30%, something like that.