Whatever message this page gives is out now! Go check it out!

YesNoFormat(query.ISSOLD) |
DollarFormat(query.PRICE) |
query.FIRSTNAME &" "& query.LASTNAME |
Iif(IsBoolean(query.ISSOLD) and query.ISSOLD, query.Price,0) |
DollarFormat(calc.Sold) |
Iif(IsBoolean(query.ISSOLD) and not(query.ISSOLD), query.Price,0) |
Name | TotalSold | TotalUnsold |
Default Label Text: | Total Sold | Total Unsold |
Data Type: | Big Decimal | Big Decimal |
Calculation: | Sum | Sum |
Perform Calculation On: | Iif(IsBoolean(query.ISSOLD) and query.ISSOLD, query.Price,0) | Iif(IsBoolean(query.ISSOLD) and not(query.ISSOLD), query.Price,0) |
Initial Value: | 0 | 0 |
Reset Field When: | Report (Changes) | Report (Changes) |
Reset Group: | LASTNAME | LASTNAME |
Label | Value |
Sold | #calc.TotalSold# |
Unsold | #calc.TotalUnsold# |
{ color:Black; font-size:24pt; } CompanyName { color:#6188A5; font-weight:bold; } PageTitle { color:#333333; font-size:14pt; font-weight:bold; } ReportDate { color:#333333 } SubTitle { color:#6089A5; font-size:12pt; font-weight:bold; } DetailLabel { color:Black; background-color:#E3EDEF; font-weight:bold; } DetailData { default-style:true; color:Black; line-size:thin; } PageFooter { color:#2F2F2F; font-size:8pt; } RectangleStyle { color:#E3EDEF; background-color:#E3EDEF; } LineStyle { color:#CCCCCC; background-color:#CCCCCC; } GroupFooter { color:Blue; font-weight:bold; font-family:Tahoma; |
{ color:Red; font-size:24pt; font-weight: bold; } |
<h3>Artist Login Form</h3>
<p>Please enter your last name and password.</p>
<cfform name="loginform" action="artSalesReport.cfm" method="post">
<table>
<tr>
<td>Last Name:</td>
<td><cfinput type="text" name="username" required="yes" message="A username is
required."></td>
</tr>
<tr>
<td>Password:</td>
<td><cfinput type="password" name="password" required="yes" message="A password is
required."></td>
</tr>
</table>
<br />
<cfinput type="submit" name="submit" value="Submit">
</cfform>SELECT * FROMAPP.ART, APP.ARTISTS WHERE APP.ART.ARTISTID = APP.ARTISTS.ARTISTID AND APP.ARTISTS.LASTNAME= <cfqueryparam value="#FORM.username#"> ORDER BY ARTISTS.LASTNAME </cfquery> <cfreport query="#artsales#" template="ArtSalesReport1.cfr" format="RTF"/> |
<cfreport template="ArtSalesReport1.cfr" format="HTML"/> |
<cfreport query="#artsales#" template="ArtSalesReport1.cfr" format="HTML" resourceTimespan="#CreateTimeSpan(0,1,0,0)#"/> |
<cfreport template="ArtSalesReport1.cfr" format="HTML" filename="artSales.html" overwrite="yes"/> |
<cfreport template="ArtSalesReport1.cfr" style="artStyles.css" format="PDF"/> |
font-family:"Tahoma"; color: "lime";}' format="FlashPaper"> </cfreport> |
<cfreport template="ArtSalesReport1.cfr" style="#mystyle#" format="HTML"> </cfreport> |