Tagged Questions
The totals tag has no wiki summary.
2
votes
1answer
90 views
Magento, getSubtotal and getGrandTotal always return zero
I have a weird problem. I have developed a module which adds a line to totals according to some value in database. But in my module model (which is inherited from ...
2
votes
5answers
223 views
Running totals in a SQL view
I am trying to get running totals in my View in SQL Server 2008
Here is my tables
BankAccounts
------------
AccountID (KEY)
Name
Created
Transactions
------------
TransactionID (KEY)
Description
...
2
votes
3answers
646 views
SQL Server Query monthly totals
I have a query that totals up all cases that were active on 01/01/2010.
SELECT COUNT(CaseID) AS Total
FROM dbo.ClientCase
WHERE (CaseStartDate <= CONVERT(DATETIME, '2010-01-01 ...
2
votes
3answers
672 views
recurse directory for file extension with total?
I want to know how much disk space is being used by zip files (or any other extension) in a particular directory tree. Is this possible on the command line (in a batch program)?
I can list them, ie: ...
2
votes
4answers
17k views
Calculating grand totals from group totals in Reporting Services
I have some data grouped in a table by a certain criteria, and for each group it is computed an average —well, the real case is a bit more tricky— of the values from each of the detail rows that ...
1
vote
2answers
346 views
SharePoint 2010 Lists - Totals at Bottom of List Instead of Top of List
Is there a simple way to cause the column totals (like Sum) to appear at the end of a list instead of at the top of the list? Having them at the top just seems unnatural...
Thanks
Lonnie Tyre
1
vote
1answer
122 views
SQL Server summary calculation for different times
I have the following example for which I'd like to calculate totals at each available time:
timestamp device value
2010-12-30 00:00 1 5
2010-12-30 00:05 1 5
2010-12-30 00:05 2 10
2010-12-30 00:13 1 ...
1
vote
2answers
314 views
PHP + MySQL: Finding total of values by recursing through mySQL parent children groups
I have a mySQL table like this:
Folders
[id] [name] [parent_id]
1 fruits 0
2 orange 1
3 lemon 2
4 steak 0
Projects
[id] [name] [parent_id] [hours]
1 project1 1 ...
0
votes
0answers
29 views
Calculating grand total from multiple tables using JQuery
I have four dynamically generated tables, and each has a cell where I calculate the sum of cells in that column - like this:
<td id="sum1"></td>
<td id="sum2"></td>
...
0
votes
0answers
10 views
SSAS show “-” for totals
I am using sql server standard I have a SSAS cube for one of the measures we don't want to show the totals instead we want to show "-" instead.
I noticed that there are "No Aggregations" measure ...
0
votes
2answers
114 views
Magento: Custom totals counted twice?
Ok, I created custom Total class for adding the special discount, and everything seems to work fine except, for some reason I can't find, my total is calculated twice! That results in double amount of ...
0
votes
1answer
67 views
Summary Data Appears in SSRS 2008R2 CSV Export
I have prepared a very simple report in SSRS 2008R2. The body of the report consists of one datasource organized into a table of detail records. I have added a summary record by adding group totals ...
0
votes
1answer
131 views
Magento - How to get the subtotal for a single product in cart?
I want to display the total price for each product (by id) in the cart.
qty | single price | total
2 | $ 2.00 | $ 4.00 <-- that's what i need
3 | $ 5.00 | $ 15.00
| ...
0
votes
3answers
208 views
sql sub and grand total
Is there a nice consise way to get grand totals here-- this query shows sub totals for each day, but how can I get the grand total of each sub total without a sub query or another query
also is there ...
0
votes
1answer
671 views
Subtotal, Shipping, Discount and Grand Total Missing in Magento
Hope someone can point me in the right direction. I am not a Magento developer but am having to fix my site after my "developer" left me with most of the work to do.
Currently in my checkout screen ...
0
votes
0answers
52 views
How do I create daily graphs using VBA?
I need to create 1 graph per day with totals per hour..If each day could be on a (separate) dated sheet or file then that would be great! I am struggling to achieve this and thought it would be best ...
0
votes
2answers
136 views
SQL with COUNTs and SUMs with cross-UNION GROUP BY
SQL guru needed, this is killing my neurons. I have a db structure (simplified) like this:
DESC documents;
id INT PK
bill_id INT FK
dtype INT -- 1=receipts, 0=invoices
...
0
votes
1answer
119 views
Can I make the Column section not expand to fill the page in iReport
If my report only generates a handful of rows of data (not pages, just rows) then I would like to have my totals row appear immediately after the last row of data, instead of being forced to the ...
0
votes
0answers
143 views
Group totals having a problem
Hi i have a report that gives details about warehouse packages. i was asked to insert shipping address and id number on the top. so as per their requirement it should be on the page header.
but as we ...