User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
You're currently browsing the ColdFusion section within the Web Development category of DaniWeb, a massive community of 422,829 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 3,331 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our ColdFusion advertiser: Programming Forums
Views: 1773 | Replies: 1
Reply
Join Date: Dec 2006
Posts: 5
Reputation: shaggysc96 is an unknown quantity at this point 
Rep Power: 0
Solved Threads: 0
shaggysc96 shaggysc96 is offline Offline
Newbie Poster

Help Need help with getting a total for individuals

  #1  
Dec 11th, 2006
I am trying to develope a simple application that will record a persons miles per week and total miles but for several different people. I have the code working to accumulate the total, but the problem is how to I get it to accumulate just for the one person and not for all? How do I get it to accumulate for just one team Name? Code is as follows:
<CFQUERY NAME="Mileage" DATASOURCE="#dsn#">
SELECT weeklyMileage, totalMileage
FROM mileage
</CFQUERY>
cfset totalMileage= 0> 
 <cfloop query="Mileage">
<cfset totalMileage =totalMileage + Mileage.weeklyMileage>
</cfloop>

  <cfquery datasource="#dsn#" dbtype="ODBC">
     Insert 
   Into mileage
   (dateupdated,teamName,teamLeader,email,weeklyMileage,mileageWeekNumber,comments,totalMileage) 
         Values 
    
('#Trim(thetime)#','#Trim(teamName)#','#Trim(teamLeader)#','#Trim(email)#','#Trim(weeklyMileage)#','#Trim(mileageWeekNumber)#','#Trim(comments)#','#Trim(totalMileage)#')
</cfquery>
AddThis Social Bookmark Button
Reply With Quote  
Join Date: Dec 2006
Posts: 5
Reputation: shaggysc96 is an unknown quantity at this point 
Rep Power: 0
Solved Threads: 0
shaggysc96 shaggysc96 is offline Offline
Newbie Poster

Re: Need help with getting a total for individuals

  #2  
Dec 18th, 2006
ok, now I am really lost. i put in the code to sum up totalMiles grouped by teamName, and took out the loop,total miles now go to 0, what else am I missing?
[code]
<CFQUERY NAME="Mileage" DATASOURCE="#dsn#">
SELECT teamname,weeklyMileage
, SUM(totalMileage) as teamMiles
FROM mileage
GROUP
BY teamname
</cfquery>
<CFQUERY NAME="getMileage" DATASOURCE="#dsn#">
SELECT mileageWeek
FROM weeks
</CFQUERY>
<html>
<head>
<title>Untitled</title>
</head>
<body>
<cfset weeklyMileage= #form.weeklyMileage#>

<cfset thetime = "#dateFormat(now(),'YYYY-MM-DD')#">
<cfquery datasource="#dsn#" dbtype="ODBC">
Insert
Into mileage
(dateupdated,teamName,teamLeader,email,weeklyMileage,mileageWeek,comments,totalMileage)
Values

('#Trim(thetime)#','#Trim(teamName)#','#Trim(teamLeader)#','#Trim(email)#','#Trim(weeklyMileage)#','#Trim(getMileage.mileageWeek)#','#Trim(comments)#','#Trim(totalMileage)#')
</cfquery>
Reply With Quote  
Reply

Only community members can participate in forum threads. You must register or log in to contribute.

DaniWeb ColdFusion Marketplace
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)

 

Thread Tools Display Modes

Similar Threads
Other Threads in the ColdFusion Forum

All times are GMT -4. The time now is 10:41 pm.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC