The 'sum' function which returns the sum of the items in an array.
0
votes
0answers
7 views
LibreOffice SUM time period in format HH:MM:SS
I want to obtain the sum of several cells containing a period of time in the format HH:MM:SS.
In LibreOffice Calc 4.0.3.3, I've copy-pasted the periods of time in the range G14:G21, and formatted the ...
1
vote
3answers
35 views
R, Sum frequency data frame by name
i have a data.frame that looks like this:
Name freq
1 species1 4
2 species2 8
3 species1 7
4 species1 ...
0
votes
2answers
54 views
grails: sum selected values
I have a select in Grails as follows
<g:select name="receiptItems" from="${myGrailsProject.ReceiptItem.list()}" multiple="multiple" optionKey="id" optionValue="description" size="5" ...
0
votes
2answers
48 views
This code displays segmentation fault on a site. Why?
The following program is meant to calculate the whether a total number of candies c can be distributed equally among num students for t number of test cases. This program gives output perfectly on my ...
2
votes
3answers
27 views
Select row where SUM becomes greater than X
I have this table
----------------
ID | Duration
----------------
1 10
2 10
3 10
I want to select the id where sum(duration) becomes greater than 15. In ...
0
votes
1answer
27 views
Sum up query result
I have reservation and postflight table. I have to do a query in the reservation table and look for the data in the postflight table.
$query="select * from reservation where date(fdate) between ...
1
vote
3answers
31 views
Mysql Query SUM dynamic amounts
I need help writing a mysql query to SUM amounts in a column where another columns values may be different depending on the value that it contains. Here is an example of my table.
account type ...
1
vote
1answer
27 views
Group By Sum Linq to SQL in C#
Really stuck with Linq to SQL grouping and summing, have searched everywhere but I don't understand enough to apply other solutions to my own.
I have a view in my database called ...
0
votes
2answers
29 views
Mysql SUM 0 when not in another table
I have 2 tables:
users:
id | name | club_id |
1 Bob 4
2 Jane 5
3 Alex 4
4 Paul 4
5 Tom 4
points:
user_id | club_id | ...
6
votes
1answer
78 views
variadic templates sum operation left associative
The code below works for the: goal for the left associative sum operation: sum(1,2,3,4);
However, it won't work correctly for sum(1,2,3,4,5) or sum(1,2,3,4,5,...). Anything with more than 4 ...
0
votes
1answer
43 views
Inception situation with oracle (sub query stuffs)
For Oracle,
From these tables,
Table 1 CUSTOMER : has cust_fname, cust_lname, cust_id
Table 2 SALESORDER : has so_number, so_custid
Table 3 ITEM : has item_qty, item_sonum
while CUST_ID = ...
-1
votes
0answers
16 views
sum alias column to sub query
i have query:
SELECT SUM( nilai.pilih1 ) as kpilih1,
SUM( nilai.pilih2 ),
soal.jwba,
soal.jwbb,
soal.jwbc,
soal.jwbd,
nilai.nilai as nilai,
nilai.catatan as catatan
CASE WHEN nilai.nilai = 4 THEN '1'
...
0
votes
2answers
43 views
Unable to calculate the sum of prime numbers below 2 million
I'm doing the Euler's Method project to find the sum of prime numbers below 2 million and I'm struggling. Here is the code I'm using. When I calculate the sum below 10 and the sum below 50 I'm getting ...
0
votes
0answers
40 views
How to sum over columns with some weight in a csr matrix in python
If I have a large csr_matrix A, I want to sum over its columns, simply
A.sum(axis=0)
does this for me, right? Are the corresponding axis values: 1->rows, 0->columns?
I stuck when I want to sum ...
0
votes
3answers
35 views
How to select records only when the SUM(field) from a separate table > 0 using MAX to identify the most recent 'field'
I have been battling with this query for over a day now. My SQL is not amazing, so that might explain why! Anyway, I'd really appreciate if anyone could clarify what I'm doing wrong here.
CREATE ...
0
votes
1answer
19 views
Excel Sum Similar Rows via Macros
I found an answer similar to my question on these boards. However, my data is setup differently and I wasn't getting the results I needed.
My data in Excel looks like the following:
ParcelNumber ...
4
votes
4answers
50 views
python sum tuple list based on tuple first value
Suppose I have the following list tuples:
myList = [(0,2),(1,3),(2,4),(0,5),(1,6)]
I want to sum this list based on the same first tuple value:
[(n,m),(n,k),(m,l),(m,z)] = m*k + l*z
For myList
...
0
votes
2answers
37 views
Sum range in column with condition in another colum
I´m trying to sum the values of a range in a column if the values in another column are equal to a certain number. For example (this is a very small example):
I want to sum all the values in Column ...
0
votes
1answer
43 views
How to write a function that adds numbers in a list by calling itself?
I'm trying to write a function that adds up all the numbers in a list but by calling itself in Python. Here's an example of what I mean:
def factorial(n):
if n == 1:
return 1
else:
...
0
votes
2answers
45 views
Unable to change NSNumber to Double and do some calculations with it
my problem is that i have an Array that holds some double values
NSArray *level4results = [context executeFetchRequest:request error:&error];
then i sum up all the values in that array
...
0
votes
1answer
25 views
SQL SUM total using 2 tables
I have 2 tables: TBL_EQUIPMENTS and TBL_PROPOSAL.
TBL_PROPOSAL has 3 important columns:
id_proposal
date
discount
TBL_EQUIPMENTS has:
id_equipment
id_proposal
unit_price
quantity
Now I want ...
0
votes
1answer
49 views
sum input values and skip one of them jquery
I have form which is making sum of numbers but i want that middle input to be skipped by jquery for summing... please help with this code here i posting... it surely must be inupt tag because it sends ...
0
votes
2answers
41 views
Total sum of values from td element (from different classes element)
How can I sum 2 different (class elements) total values?
Example: http://jsfiddle.net/x7QuB/
var total_listed=[0,0];
var total_sold=[0,0];
$(document).ready(function(){
var ...
0
votes
1answer
33 views
How to get the sum of a created column from a joined table? SQL / C#
In ASP.NET / C#, I am working with two tables; Cart_LineItems and Products. I have joined the two tables and created a new column called "Extension" that has multiplied the "Products.UnitPrice" times ...
0
votes
3answers
31 views
getting sum of a column in php is not working
i'm trying to get the sum of values in a column inside php but it's not working at all while the query works fine when testing in MySQL here's the code (updated with full code)
...
0
votes
2answers
23 views
How to optimize a MySQL query with SUM(condition)
I have the following MySQL query.
SELECT user_id
SUM(reached = 'Y') AS reached_count,
SUM(reached = 'N') AS not_reached_count
FROM goals
GROUP BY user_id
In table goals I ...
0
votes
0answers
49 views
SQL: Fastest way to sum the division of two columns that contain 0's and grouped by a third
Lets say we have 3 columns, all integers, the first the id, the second X and the third Y, where X is 1 when an instance occurred, 0 when not, and Y is 1 when an opportunity for that instance occurred ...
0
votes
1answer
40 views
Calculate a discrete mean in python
I have a set of data points for which I have made a program that will look into the data set, from that set take every n points, and sum it, and put it in a new list. And with that I can make a simple ...
0
votes
0answers
11 views
Missing $ inserted - did I make something wrong? [migrated]
Im writing a paper using Latex and I get repeatedly this "! Missing $ inserted. $ l.92 ?" error. Its only in two passages and I don't see any obvious mistake I made. The code is:
...
2
votes
2answers
29 views
Sum vector with corresponding name
Let say you have a list of vector:
L = list()
L[[1]]= c(2,34,6,7,3)
L[[2]]= c(3,4,6,8,1)
names(L[[1]])=c("A","B","C","D","E")
names(L[[2]])=c("A","R","C","D","F")
L
## [[1]]
## A B C D E
## 2 ...
4
votes
2answers
2k views
How to sum based on field value (mysql)
I got this table named tb_stock
ID AMOUNT FLAG LAST_AMOUNT
1 5 N 0
2 0 Y 8
3 0 Y 7
4 6 N 0
Right now i want to ...
0
votes
2answers
41 views
SQL query of Sum and Count from multiple tables
i have following two tables
1. BList
BookingID
AdultNo
ChildNo
BookingDate
2. BHandle
BookingID
TicketingStatus
FinalSellingPrice
FinalNett
Staff
What i want to do is to get the distinct ...
0
votes
4answers
801 views
R - min, max and mean of off-diagonal elements in a matrix
I have like a matrix in R and I want to get:
Max off - diagonal elements
Min off – diagonal elements
Mean off –diagonal elements
With diagonal I used max(diag(A)) , min(diag(A)) , mean(diag(A)) and ...
1
vote
2answers
63 views
Sum of particular members of an object array
This is my first question here, so hopefully it's a good one (I have searched for an answer, but not found it yet).
I have an event based disease model written in C++, and I'm trying to convert it to ...
2
votes
1answer
44 views
Mysql SUM function returns returns wrong decimal values
I have the following table with the test data set:
CREATE TABLE `test` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`desc` varchar(20) DEFAULT NULL,
`amount` double DEFAULT NULL,
PRIMARY KEY ...
0
votes
1answer
21 views
Updating Table2 when data found in table1
Forgive me if I make a fool of myself but still fairly new to mysql queries beyond the "basic" kind. Currently I have two tables of data.
Table 1 has data parsed into it using a LOAD INTO and Table 2 ...
-1
votes
1answer
38 views
PHP , Sum Of Common Division 2 Numbers
I want to Sum of Common Division Between two number,
in below is my code , and output is maghsom moshtarak is=24612
but Goal is 12 only;
please help me,
<?php
$m=0;
$j=6;
$h=12;
function ...
0
votes
1answer
20 views
Excel: SUMing values that fall in a range (Extending SUMIFS to use ranges of Criteria)
First post - please be gentle.
I have an interesting problem where I'm trying to convert a flat data table into a cumulative total based on two ranges (to create cumulative graphs of progress). ...
2
votes
2answers
40 views
Query to join three tables With Sum
I am trying to join thee tables and there's one Sum value but its not showing any error but its a wrong value... but if I join with two table it working correctly.
the query is
SELECT ...
0
votes
1answer
20 views
MySQL Indexes for random queries across 1.5M lines table
I have a pretty big mysql table of 1.5 Millions lines.
There are 7 columns identifying the Data with labels (varchar), and 38 Columns containing Numeric (Decimal) Data;
The data are organized that ...
3
votes
3answers
49 views
Aggregate data frame by date and apply different functions to corresponding columns?
I have the following data frame "DF" which is part of a much larger one:
X1 X2 X3 X4 X5
4468 2010-03-24 3 1.000000e+00 1 2
7662 2010-03-24 9 3.000000e+00 2 1
1272 ...
3
votes
1answer
452 views
Using SlickGrid Aggregation/ Sum of a column
I am simply trying to sum a column and display the total at the bottom of the table. From looking at examples it seems like using an aggregator is the best way to do this. However when I simply add in
...
0
votes
1answer
318 views
PHP calculate running sum from array based on date value
I need to create a PHP function that will loop through a multi-dimensional array and return a value which represents the sum of a certain key, where the value of another key is <= the date value ...
2
votes
3answers
64 views
Sum values from an Array in JavaScript
I have defined a JavaScript variables called myData which is a new Array like this:
var myData = new Array(['2013-01-22', 0], ['2013-01-29', 0], ['2013-02-05', 0],
['2013-02-12', 0], ...
0
votes
2answers
69 views
SQL SUM top 5 values then JOIN results
I want to return the top 5 most voted items, sorted by vote count.
I suppose the best way to do it would be to sum each row's votes_up and votes_down, then take the top 5 of those and join it with the ...
0
votes
1answer
27 views
Mysql merge 1 table into a 2nd and count columns together [closed]
TABLE1
| ID | NAME | MONEY | POINTS |
| 1 | Tim | 200 | 1 |
| 2 | Arne | 500 | 2 |
| 3 | Lies | 600 | 3 |
...
0
votes
1answer
46 views
Generalizing ROW() and SUM() - excel
What I would like to do is something like this:
=SUM(A(ROW()):E(ROW()))
so this formula would take a sum of all the elements from column A to E in the current row.
Is this possible or should I take ...
-1
votes
3answers
85 views
MySQL SUM query problems php
I have the following query running in PHP:
$ticketTotal = mysql_query("SELECT SUM(`tickets_issued`) FROM `tb_att_registered_attendants` WHERE `confirmation_code`!='000000'");
But when I return ...
0
votes
2answers
31 views
How to find the sum of two colums with a quantity value
Ok so I am a lil confused how to go about this and seek some help..
I have a mysql db that has a column named quantity and another called price_paid
what I want to do is take and add up the entire ...
1
vote
5answers
4k views
Changing a SUM returned NULL to zero
I have a Stored Procedure as follows:
CREATE PROC [dbo].[Incidents]
(@SiteName varchar(200))
AS
SELECT
(
SELECT SUM(i.Logged)
FROM tbl_Sites s
INNER JOIN tbl_Incidents i
ON ...









