Tagged Questions
0
votes
1answer
15 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 ...
0
votes
2answers
36 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
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 ...
2
votes
2answers
62 views
Excel - Sum cells based on colour and date
I've been tearing my hair out trying to figure this out for a day or so now and seem to be getting nowhere so hopefully someone can shed some light on a solution for me.
I have the following:
Date ...
0
votes
0answers
26 views
How do I pull data from the rows which contain my search, and sum them to give me a percentage?
I'm looking to write a formula for excel, but I've seem to hit a dead end.
I have workbooks that have "Monthly Gas Used" in B5; below this I have a breakdown of where the fuel went.
The breakdown ...
-1
votes
1answer
74 views
How do I add values in column B if column A contains the same employee surname more than once? [closed]
State of Data: I have column A which has names of employes and column B has number of hours. How do I add the hours if column A contains same employee surname more than once?
I have been using what I ...
0
votes
0answers
44 views
Countif - Function: SUM doesn´t work
I want the following function to sum a few values in one row. If the value is a 'L', it should sum 8, but that doesn´t work. If I type in a 'L', the value is 168.
...
0
votes
1answer
36 views
Automation of sum( ) in Excel
I have an excel sheet say First.xls with some columns, looks like :
Sno Type Desc
1 Hard xxxx
2 Soft yyyy
3 Medium zzzz
4 Hard aaaa
5 Medium zbzb
6 Medium acac
n ...
2
votes
2answers
76 views
Creating a macro that uses a function with a variable
Heres my code:
Dim N As Single
N = ActiveCell.Offset(0, 0).Value
E = 1 - N
ActiveCell.Offset(0, 1).Range("A1").Select
ActiveCell.FormulaR1C1 = "=-SUM(R[E]C:R[-1]C)"
ActiveCell.Offset(0, ...
1
vote
1answer
83 views
How to make an average formula only count numbers greater than zero?
=AVERAGE(K2:K32)
I have this formula spitting out an average for coulmn K as you can see. The problem I am having is that the numbers in column K are populated by a formula basically adding two ...
0
votes
2answers
100 views
Excel Sum and Group By inplace?
Basically I'd love to use a Pivote Table but it doesn't display correctly.
Say I have
+---------+---+-----+
| A | B | C |
+-+---------+---+-----+
|1| Date |Qty|Title|
...
0
votes
2answers
73 views
excel adding 1 on all alphanumeric string
I need to make a new product code for 6000+ records. In order to do that fast and decipher it in the future, I need to put a formula from the old code to the new code.
sample codes:
yas111
bd224
...
0
votes
0answers
16 views
Conditional Formatting Breaks Sumif custom Colorfunction [duplicate]
I've been trying to figure out how to sum cell values based on the colours, luckilly I found a nifty VBA custom colourfunction on a forum that allows me to do exactly that.
However, my problem lies ...
0
votes
2answers
59 views
Count multiple items multiple times in Excel
I'm trying to produce a bar graph of the number of vehicles stopping each minute over a one hour period. I need a table of mins (1 to 60) vs. number of vehicles to do this.
However, my source data is ...
0
votes
1answer
393 views
Adding Sum value to active cell VBA excel
Im trying to add a sum into an active cell but its still not working.
My code:
rngCell2.Offset(0, 6).Activate
ActiveCell = ActiveCell + 15
When the cell is empty, after execute the cell will get ...
1
vote
2answers
316 views
excel sum all cells where another cell contains a string
Example Table:
| A | B
--------------------------
1 | 26 | tom, jerry
--------------------------
2 | 12 | tom
--------------------------
3 | 6 | jerry, tom, dick
Suppose I have ...
1
vote
1answer
70 views
Regex in Javascript to match the format of the SUM function in Excel
I'm having trouble formatting my Regex expression in Javascript to test if the value in a textbox matches a similar format to that which you see in Excel.
So far I have this:
var equation = ...
0
votes
1answer
113 views
Column sumif on an unknown range of rows
Quick query on something which I am positive must be straightforward, but is starting to drive me spare.
I want to SUM a column on which I define the range. However, I don't actually know the range. ...
-1
votes
2answers
53 views
Dynamic sum function [closed]
I'm working on a spreadsheet where I would like to be able to sum a certain number of cells automatically. E.g. I put in 120 or 100 in my reference cell and Excel then gives me the sum of the top 120 ...
0
votes
1answer
250 views
Excel, Adding Specific Columns for Multiple Rows
If I have a table something like this:
|A|B|C|D|
1 |1|0|1|
2 |4|4|2|
3 |7|2|3|
4 |5|7|2|
5 |3|9|1|
Is it possible to add up column A with column C, and display the result in D "=SUM(A1,C3)"
BUT
I ...
0
votes
2answers
209 views
sum hash of hash values using perl
I have a Perl script that parses an Excel file and does the following : It counts for each value in column A, the number of elements it has in column B, the script looks like this :
use strict;
use ...
0
votes
1answer
83 views
Sum of any cell in given range matching complex condition
I was given a set of data containing airline tax data on coupon level and had to split the interlinable taxes from the YQ and make the conversions to EUR and USD. After ~ 1100 lines of VBA to get the ...
0
votes
2answers
267 views
Do something with sequence of cells in an Excel cell?
I want to sum "every 5th row between A9 and A54," i.e.
A(5x + 9)-A(54),
inside excel.
There's also a sub-question here. Is it possible to sum a range of cells using a function or VBA?
Here ...
0
votes
3answers
304 views
Sum Range with condition in Excel
I have an Excel table like this
date (A) value (B)
1 2012-09-01 1
2 2012-09-02 2
3 2012-10-01 5
I want to sum the values if the month and year are of the same as ...
1
vote
1answer
170 views
Excel SUM dynamic range returned from database
I am new to excel and I am trying to write an excel formula where I sum all the values from a single column. The data is returned from a .net application so I am using a template file and each column ...
0
votes
2answers
8k views
Sum function in VBA
I have a problem with summing cells in vba. I need to use Cells(a,b):
Range("A1").function="=SUM(Range(Cells(2,1),Cells(3,2)))"
but it doesn't work.
0
votes
2answers
2k views
Excel: How to sum two different numbers in same cell?
I have some info like below:
3/7
4/6
5/1
And I want a formula that will add them up to a total based on the numbers on either side of the slash. So the result cell from the above would be: 12/14. ...
3
votes
2answers
2k views
SUMPRODUCT( SUMIF() ) - How does this work?
Part 1:
I was able to construct a formula that does exactly what I want (from some examples), but yet, I'm unable to figure out how exactly it works. I have, starting with cell A1:
Price $
table ...
1
vote
2answers
1k views
Average rows of variable length VBA
I am trying to get a simple VBA code as part of a Macro that will put in column B the average of the values for each row.
I have code that generates a time series and fills a column per simulation ...
1
vote
3answers
2k views
How to use IF and SUM in excel to count unique entries in a row?
Basically I have a large set of data in excel, and I was wondering how to count across a row how many cells are not #N/A?? I think it should be possible with IF and SUM but I'm not entirely certain.
1
vote
1answer
540 views
Excel, Sum function not working
I have a problem to do a sum with excel 2007 (this is working with v2003 & v2010 but not with 2007).
Basically, it always returns 0. When i open the file with v2010 for instance it works ...
1
vote
4answers
885 views
Finding SUM except some columns
Below is what I have.
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ A + B + C + D + E + F + G + H + I + J + K +
...
0
votes
2answers
2k views
How to autosum a full column in excel without circular reference?
I would like to have in the red circle cell (C19) the sum of all the C column. I've tried using C1 to C50 in the formula (=SUM(C1:C50)). I use C1:C50 and not C1:C18 because if I add some lines ...
1
vote
2answers
736 views
Excel “Subtotal” array formula - Other form of sum.if
This is a continuation of the question excel different SUM.IF array function, But since I've marked that as solved, I created a new question.
What I wanted there was a distinct sum of some values, ...
0
votes
2answers
361 views
excel different SUM.IF array function
I have a very specific report, which I can't change the layout. Basicly, it looks like this:
A B C
1 ASD Other 10
2 ASD Other 10
3 ASD Other 10
4 JKL Other 20
5 EFG ...
2
votes
1answer
763 views
SUM IF not working in Excel
I have this table
price product
25 apple
10 bananas
15 apple
30 oranges
45 oranges
5 bananas
In cell A10==SUM(IF((B2:B7="apple"),A2:A7,0)) <--- this does not work #VALUE! error
...
0
votes
1answer
552 views
Excel sumproduct accross multiple ranges and COUNT the results
I would like to count the number of occurances of a range of numbers between two dates and am having tremendous dificulty
On one Workbook we have a data showing the date that an event took place and ...
0
votes
2answers
260 views
SUMIF or SUMPRODUCT
I am trying populate H3 with the sum of column E for rows that have the same month and same year as H2. Any ideas would be greatly appreciated!
-2
votes
1answer
971 views
Excel VBA: find unique values, copy text, and copy sum to a new sheet
I need a VBA function that will perform the following:
Find all unique values on Sheet 1, column "A", copy text from column B and column C, sum column D through G (all sums must be within the unique ...
0
votes
2answers
126 views
How to return a value in a column which has the maximal sum in another column?
A B
1 # $
2 1001 10
3 1003 20
4 1004 10
5 1001 20
6 1001 10
7 1005 20
8 1003 10
9 1004 20
I want the # in column A whose ...
0
votes
1answer
166 views
How to do Catalan Number with recursion in Excel?
I tried to the the following in Excel using N values:
http://upload.wikimedia.org/math/b/a/d/bad5db400fcfd7092e2008e376993a27.png
I can make the Ci using =COMBIN(2*N;N)/(N+1), but how to make n-i-1 ...
0
votes
2answers
230 views
How do i tell a cell to contain the sum of a entire row in excel
I would like to tell an excel sheet to put, for each row, the sum of the values between B and G cells in the H cell.
For exemple:
H1 must contain the SUM(B1:G1),
H2 must contain SUM(B2:G2)
...
I ...
-1
votes
1answer
572 views
Sum values of certain field in Excel
I have an Excel spreadsheet with a number of worksheets within it. One of the columns on each worksheet is called 'type'. This column is made of free text (a bit like a category).
What I'd like to do ...
0
votes
2answers
252 views
How do I “batch reformat” numbers in Excel?
I am struggling with the following problem:
I have a spreadsheet with one sort of numbers formated as follows:
e.g.: displays as 44.0, true value is 44017.08 and what it represents is 44million.
...
2
votes
3answers
518 views
How to: Excel 2003 macro to sum visible values only?
at the moment, I have a very large spreadsheet (40k+ rows), the data includes columns for "name", "date" and "value". the format is uniform.
I want to be able to sum all "values" with the same "name" ...
0
votes
2answers
763 views
Use date as a criteria in SUM or sumif function
I have two columns
Amount Date
100 01/01/2000
2000 01/12/2002
2000 02/02/2005
150 03/02/2000
250 05/03/2002
350 04/05/2006
I need result as follows
Total ...
0
votes
2answers
503 views
Find biggest subset that sums to zero in excel or access(vba,sql or anything)
I have a column of numbers in excel, with positives and negatives. It is an accounting book. I need to eliminate cells that sums to zero. It means I want to remove the subset, so the rest of element ...
1
vote
2answers
1k views
Adding two values in Excel, VBA
I am new to VBA and want to add two values. The code I have is:
Cells(7 + i + 1, 6).Select
sum1 = "=SUMIFS('[" + strFil_1 + "]Tooling forecast template'!R6C20:R500C20,'[" + strFil_1 + "]Tooling ...
2
votes
1answer
1k views
Summing same cell across hundreds of Excel workbooks
I have around 500 timecards. Each timecard is it's own file (.xls workbook). I need a total of cell K5 from all those workbooks. This is a one time thing (every quarter) - I don't need the result to ...
0
votes
2answers
159 views
sum with two conditions
I'd like to sum up the value in column C if A==D and if the title contains "MT" or "LS" then save the sums for example in column E. One field for MT and one for LS.
I tried sum-product, sum-ifs,a ...

