The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
54 views

Calculating the sum of each digit of an Integer value

In this exercise, I was suppose to grab any Integer and calculate the some of each digit. I found the best way to do this would be to use the method below. Converting to a string and reading each ...
0
votes
3answers
33 views

Adding attributes in 2 arraylists

I have 2 arraylist which the records are stored as objects. First arraylist object has attributes such as patient id , totaltestcost, totaltreatmentcost. Second arraylist object has attributes such ...
0
votes
1answer
38 views

Adding a score in a quiz with php and mysql were answers heeft different points

I'm just starting to learn php. I have a quiz, were every correct answer gets different points. I looked on the internet, but up till now I coouldn't find the solution. This SO question helped me, but ...
1
vote
0answers
55 views

Add total or average to ggplot with color legend

I have a plot with a color legend, and would like to add a total/average geom_... series to it. For example: d <- ggplot(data=mtcars, aes(x=cyl, y=mpg, color=factor(vs))) + geom_point() d + ...
0
votes
1answer
27 views

Calculating totals per column, per row, with a macro

I need some help with VBA. I have this sheet: Game Room City Machines_week_1 Played_week_1 Won_week_1 Machines_week_2 Played_week_2 Won_week_2 A Julia ...
-1
votes
2answers
27 views

How to use (AS) TOTAL in where, on mssql?

How to use (AS) TOTALNAME in where SELECT *, CITY + ' / ' + NAME AS TOTALNAME FROM FARKETMEZ WHERE TOTALNAME like '%TURKEY%'
-1
votes
1answer
28 views

Read from file and average total

Python 3.x Im trying to read from a file called numbers.txt. There are several rows of numbers in it. I need to print the total and average. Along with that I need to use exception handling for ...
-1
votes
0answers
44 views

Adding row to the Google visualization table

I have created a data table using google visualization query as given below. function drawVisualization() { var query = new ...
0
votes
2answers
53 views

C, total from unix ls function

I have to make ls -l function. My problem is to find the total value from ls -l. Here is how I do it. if (l_option) { struct stat s; stat(dir_name, &s); printf("total %jd\n", ...
0
votes
1answer
23 views

prevent wordpress from counting total posts

Hi i would like to display 20 posts ONLY in my frontpage so i created a function to alter the query like this : if( is_front_page() && $query->is_main_query() ) { ...
2
votes
1answer
85 views

Grand Total in Google visualization dashboard table

I have a simple Google visualization dashboard sample with one categorypicker control and a table. My code is given below. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" ...
-2
votes
0answers
22 views

Assembly : multiples of the current hours or minutes [closed]

Please help me: Write Assembly language program (in both embedded C++ & pure) enter characters until the total character of the letters entered code is multiples of the current hour or minute, ...
-2
votes
1answer
79 views

Getting NaN during calculation

I am trying to calculate the total of a selection of CDs in addition of P&P. The code I'm using is coming to a total of NaN? Very confused here. what am I doing wrong? function calculateTotal() ...
0
votes
0answers
16 views

SUM() on continuous form slow to calculate

I have Form and Subform connected to a SQL Server database via an ADODB connection. The main Form is an 'Order' header and the subform is a continous list of 'Items' on the order. I have a hidden ...
2
votes
3answers
78 views

how to solve NaN when i deleting number?

This is the code when i am adding in all textbox it works fine but after removing number it shows NaN function sumVal() { var total = 0; var coll = document.getElementsByTagName("input") ...
0
votes
0answers
17 views

Calculating Total Sum in Master from Detail

My Master-Detail form is used to create a list of orders and their costs. The Detail contains a field called "COST" and I need the "TOTAL COST" field in the Master to be calculated upon this. For ...
0
votes
1answer
36 views

Grand total in Google spreadsheet pivot queries

I have a sample Google spreadsheet here. In Sheet2 of that spreadsheet, I created a summary using the query: =Query(Sheet1!A1:E24, "Select A, Count(E) GROUP BY A Pivot C") But I want to sum of each ...
0
votes
2answers
43 views

Optimize DB2 SQL SUM query

I'm trying to add a row that indicate the total for a bunch of data. For example: ISAAC 25000 Jane 18000 ----------------- TOTAL 43000 My current way of achieving this is using a ...
0
votes
0answers
171 views

Javascript to calculate line level sum and total sum on dynamically generated table

I am using codeigniter to generate a view. My view has a table which dynamically adds rows. Each table row has an autocomplete field for the product lookup. This uses javascript to populate the price ...
0
votes
1answer
46 views

How to make readmore page [closed]

I wrote this page. Can anyone please tell me how I can create a new page called readmorepage.php where the user can read the full content? <?php echo "<div id=message>"; $text = ...
0
votes
1answer
25 views

How can add an element to display the total value of a chart?

Could someone help me please ? I am totally ignorant in programming and I am having a lot of trouble to make something simple. How can add an element to display the total value of a chart of ...
-2
votes
3answers
56 views

Writting Number Outputs to Array

How would I go about putting numbers that have been calculated and enter them into an array? For instance if I have the functions: int sum_even ( int p1, int p3, int p5, int p7, int p9, int p11){ ...
3
votes
2answers
137 views

C# - Substring sum using tokens to identify values

What I would like to achieve is the following. I have a string which could be in the following format (just an example the actual string could be completely random): 01005010050 The above string is ...
1
vote
0answers
58 views

SQLite: sum of large real numbers is integer instead of real

I created a table with some values: db.execSQL("create table table_test (" + "id integer primary key autoincrement," + "money real not null" + ");"); ContentValues ...
0
votes
2answers
67 views

SQL CASE and JOINS: How to get different counts and totals?

I am in need of some assistance. I would like to get a count of my activated, deactivated, and the total of users in my system for these columns. The current output includes the names within the NAME ...
0
votes
0answers
86 views

Can't calculate totals in general ledger report

I need to design a report to get debt of receipts between two dates. The receipts have to be grouped according to the account numbers. So I have created a group on account numbers. I also have to ...
2
votes
1answer
18 views

Using a derived field

I have two tables. One is InvoiceHeader and the other is InvoiceDetails. I have a field in InvoiceHeader called total which I want to calculate all the costs associated with that InvoiceID from the ...
0
votes
1answer
327 views

Adding the cell values of a record in grid and get the result in the last cell of the record in extjs

Here my grid name is "rightpanel". I am trying to add the values entered in each cell of the record and display the total in the last cell/column of the record. But I m facing a issue with ...
0
votes
2answers
46 views

how to get python to add a string together?

Here is a small chunk of a code i have: studentName = "" def getExamPoints (total): for i in range (4): total = 0.0 examPoints = input ("Enter exam score for " + studentName + str(i+1) ...
1
vote
2answers
91 views

MATLAB: Creating a matrix from for loop values?

I have the following code: for i = 1450:9740:89910 n = i+495; range = ['B',num2str(i),':','H',num2str(n)]; iter = xlsread('BrokenDisplacements.xlsx' , range); displ = iter; displ ...
-2
votes
3answers
167 views

Calculating totals when clicking checkboxes

I have a list of radio buttons represented by this code: <form id="menu4strombolis"> input1 <input type="radio" name="menu1"><br /> input2 <input type="radio" ...
0
votes
1answer
128 views

Magento - Displaying the Sum price of all products

Okay, I am running Magento 1.7 and have been asked by my boss to have a bar at the top of our site showing the total number of items in stock and the total value of said stock. So far, I've figured ...
2
votes
2answers
200 views

Powershell get total size of files which user owns

I need a powershell script, which will go through all users in system and will find total size of all files which any user own... I have script which is going through all users, but then I've no idea ...
0
votes
1answer
149 views

Apply discount after getting Total in magento

Can anyone elaborate working of discount applying to whole cart.I Could not get the logic behind it.Actually i do want to write my own custom discount applying to cart. Currently i am overriding ...
0
votes
2answers
398 views

how to get the total row count with mysqli

i am trying to understand mysqli extension and did google but got very few info on this except php.net which was helpful. now after all this i am trying to achieve what i could with mysql extension ...
0
votes
2answers
116 views

how to add 2 totals from different tables?

How can I subtract the TOTAL EXPENSES from TOTAL AMOUNT RECEIVED and display it on the TOTAL REVENUES? The datas come from different tables from my database..unfortunately i cant upload a pic for a ...
0
votes
1answer
51 views

MySQL - max in group of results

So maybe my question title is not most relevant but I'm not good in sql and I will need to learn it for sure (So hint for some book would be very useful) Anyhow I got table which has following ...
0
votes
1answer
72 views

Totaling variables in a while loop for python

My program is meant to be a virtual McDonald's. Everything works fine, but I need help with one of the totaling methods. At the bottom of this program I totaled the total number of fees etc. Now I ...
0
votes
1answer
52 views

Sending value of drop down with description and numbers used for calculating total

I have a form that I don't have control of the php of to edit. I need it so that when it sends the value it sends the description of the item but I needed the value to add the prices for the total ...
1
vote
4answers
107 views

How to Total a while loop?

Purpose is to put diff ages in, if -1 is entered then the program stops, my totaling statement is wrong. Will Someone please help me fix it. Totalage = 0 age = 0 print "Enter you Family member's ...
1
vote
1answer
64 views

How to create a total with drop down menu selections?

I am having difficulty creating drop down menu's that when selected multiply for total. For some reason the total is not showing up? Here is what I have so far: <div id="cid_7" ...
-1
votes
1answer
73 views

Effective usage of a while loop

I understand that a trailer value is entered in my loop to end the program. The purpose of my program is to enter a kid's name and then their grades. When you are done with a single kid you enter -1 ...
0
votes
1answer
166 views

How to get number of iterations in nested foreach JSTL

I have a TreeMap with <c:if test="${!empty viewObjects}"> <table border="0" cellpadding="0" cellspacing="0"> <c:forEach items="${viewObjects}" var="relations"> ...
0
votes
1answer
196 views

Calculate total of each columns in jstl

I am having a report like this 01 jan 02 jan 03 jan ... total user1 3 5 10 18 user2 5 6 9 20 . . . total ? ? ? ...
2
votes
1answer
112 views

How do I take already calculated totals that are in a loop and add them together?

I created this program in Python 2.7.3 I did this in my Computer Science class. He assigned it in two parts. For the first part we had to create a program to calculate a monthly cell phone bill for ...
0
votes
1answer
171 views

Magento change payment information in the email templates

I have a small problem with the email templates. In the checkout and cart pages i managed to change 'Grand Total' to 'Total' This didn't change in the email templates though. does anyone know how i ...
0
votes
1answer
144 views

Magento onestepcheckout change order in table

I ran into a small problem. I have the onestepcheckout installed together with the afterpay module. Everything is working fine except 1 thing. At the table where you see your subtotal and total and ...
0
votes
2answers
71 views

how to get all numbers from a string and create a total amount using php

i want to get the total amount of hours that is outputted from our database, but the problem is the values are on string format ex of the values: 9H:20M 3H:13M 3H:50M 6H:30M TOTAL:22H:53M i want ...
0
votes
0answers
28 views

number total of query records - Drupal issue

I'm developing a site in drupal 7, I created a dynamic query simple: $query=db_select('node', 'n')->extend('PagerDefault') ' ' ' ' $result = $query->limit(10)->execute(); I wanted to know ...
-2
votes
1answer
68 views

How to delete an account from Facebook's servers? [closed]

Is there any way to delete an account from Facebook's Servers ? Or a way to be sure it will be. "If you don't think you'll use Facebook again, you can request to have your account permanently ...

1 2 3 4