To Sum Cells Until Preset Value Is Reached
Apr 23, 2007
I have a spreadsheet with time values incremented in column A.
In column K, there are numerical values that correspond to the time in column A.
Elsewhere, a specific time is chosen from which to begin the summing of the values in column K.
I need to be able to sum the values in column K until preset values are reached. Then I need to know at which corresponding time value the summing loop stops.
For example, a time of 11:00 AM is chosen as the "start time". I want to sum the values in column K until they are >= 2.000.
At that point, I need to know what the cell value was in colum A that is in the same row as the last cell value in column K.
I can't seem to do it with simple Excel functions without falling into a self referencing loop. So what I need is for a VBA loop to lookup the appropriate values in column K, sum the values, check the total, and continue the loop until the preset total is reached. Then look up the value in column A in the last row of summed values, and return that value.
View 9 Replies
ADVERTISEMENT
Mar 12, 2014
I am trying to create a special workbook for my asphalt project. After inputting all of the day's truck information, I want to add up the total tons and then for the program to highlight which truck puts the total tonnage at or slightly above 500 tons. I'm not sure if "isolating is the right term to describe what I wish to do or not, but my whole workbook will be based off of similar actions like what I'm requesting. Here is a portion of my sheet:
Truck #Tonnage
1 21.93
2 22.84
3 23.21
4 24.89
5 24.8
6 25.01
7 24.88
8 24.44
9 23.14
10 24.53
11 22.03
12 22.61
13 24.9
14 24.69
15 24.85
16 24.81
17 24.82
18 22.55
19 22.18
20 24.52
21 22.49
22 24.81
And so on.....
View 4 Replies
View Related
Aug 7, 2012
Im struggling how to even start writing this code. What im trying to do is go down column S from row 2 down and sum up each cell until the sum = 700 then delete all the rows below that with some thing in them.
View 2 Replies
View Related
Sep 10, 2007
i have a User form that i'd like to add preset tabs command locations to.
For example,
on open i'd like the active cell to be on cell M3. and as the user presses the tab button jump to the following cells locations:
P3
Q5
P7
Q7
P9
View 9 Replies
View Related
May 24, 2014
I have a spreadsheet with data in 7 columns. Columns A-d have one line of data in them but the other 3 columns have more than one line.
How do I write a macro which will copy the first row of the first 4 columns down until I reach an empty row?
View 2 Replies
View Related
Jul 8, 2014
I have a pivot table where i would like to filter the values according to top 10, bottom 10 etc. I know that it works with using the filters in the pivot tables (Value Filters - Top 10 ...), but for making it easier and faster to use these filters, I would like to have some preset filter options as buttons or a drop down menu that immediately display them.
So that you don't need to choose the filter values yourself. I need to be able to either filter the e.g. Top2 Business Areas or within one Business Area filter the top 3 Business Groups. I thought about maybe making a drop down menu where you can choose the business areas and then another drop down where you can choose the Filter such as Top10, Bottom 10, Top 3 etc.
bSample_Pivot.xlsx
View 3 Replies
View Related
Nov 19, 2012
I have situation where my account (from trail balance) will present to different grouping based on reporting, example below. How I can formulaize or using VBA to sum to amount based on the format.
Example :
if i want the format b : if i sumif HCM - the total should be from account code a1001,a1002,a1003 and hrd will sum up based from account code a1004,a1005,a1006
Account Code
format a
Format b
format c
format d
format e
a1001
adm
hcm
adm
adm
hrd
[Code] ........
View 7 Replies
View Related
Dec 6, 2013
I have 90+ rows of data that I want to transfer into a table format on another worksheet. At present I have laboriously been copying and pasting from one to the other but am losing the will to live
Id like to create a macro to do this for me. Is it a matter of recording the macro to replicate as I copy and paste or is there a better way
View 3 Replies
View Related
Oct 27, 2009
I have a big group of test data each has a list of record of the format (time, parameter). But they have different time step, ie. the records have different number of data set in the same duration. I would like to make them the same, so I need to extract data from the records. For example, I have a list of the original record (in column A & B) as follows: ..
View 9 Replies
View Related
Dec 11, 2009
Does anybody know the code or the formula to divide a number generated by a formula. Id like to divide this number by 2 different set numbers. Meaning if my number comes out ot 19, id like to divide this by 5.5 and if it's not a whole number which this isn't (it's 3.45), i'd like to round this number to a whole number and add 2.5. My end answer would be 3 5.5 and 1 2.5.
Windows XP
Excel 2003
View 9 Replies
View Related
Jan 14, 2009
If I have a dropdown with
A (value 1)
B (value 2)
C (value 3)
D (value 4)
and a person selects one of those letters in the dropdown in column 1, I would like column 2 to show the number value associated with it
View 14 Replies
View Related
Apr 19, 2014
I'm trying to automatically add and remove one criterion from an autofilter without disturbing the previous existing criteria The autofilter code sounds like this:
Code:
ActiveSheet.Range("$A$1:$L$47").AutoFilter Field:=6, Criteria1:=Array( _
"Clay", "Grass"), Operator:=xlFilterValues
How would I go about referring to this array and adding another item called "Hard" to any pre-existing elements in this array?
I plan on attaching this code to a button and use it as a filter, so when the button is pressed, the item will be added to the list of criteria, and if it is "un-pressed" the item will be removed.
View 3 Replies
View Related
Jul 13, 2006
First it should Insert a Column to the left of A. Then it should go to column B and search for the number 99 and delete all rows after it. In column C I want it to do the following formula =vlookup(b2,descriptions!$b$2:$c$250,2,false) and have it copied all the way down to the end of data.
Next I need labels added to the tops of the rows
Next I need the description columns in C to be copied to column I
Finally, beginning at J2, I would like the formula (e2 * g2)/100 entered to the end of data. Attached is sample data.
View 2 Replies
View Related
Mar 31, 2014
Column A
20
Column B
10
8
6
4
2
Column C
3
Right now I want to count the rows (the value is under column C) summing in column B until the sum reaches the value in column A. So column C is 3, because 10 + 8 + 6 => 20. I've tried
[Code] .....
But it doesn't work. Are there any other ways of performing VBA for this?
Attached is a snip of my workbook : VBAHELP.PNG
View 1 Replies
View Related
Apr 5, 2008
I have a value in cell P1 and is always -ve.
This value is calculated by some tedious calcualtion in some other part of the sheet.
By entering value in Cell P2, the value in cell P1 will progress towards +ve number.
What i want is a formula or Macro to increment the value in Cell P2 by 0.01
until value in Cell P1 becomes +ve...
Below is the example of my manual calculation.
When i have
P2=0 P1=-23.58
P2=0.01 P1=-14.78
P2=0.02 P1= -9.30
P2=0.03 P1= -2.92
P2=.04 P1= 1.05
Since i have achieved P1 to be positive, calculation should stop with value in P2=0.04
I have to do this for 31 column and hence manually doing it takes long time
View 13 Replies
View Related
Mar 15, 2014
I currently have a table with 21 columns and 30 rows for inputting data. It would save some time if the cursor could move to the start of the next row when the last column was reached.
View 2 Replies
View Related
Mar 26, 2014
i have a sheet called match and dates in column f and would like the rows to auto delete when 6 years old
View 5 Replies
View Related
Dec 10, 2009
I have a quantity column on an inventory sheet which automatically updates the available quantity based on sales from a sales sheet. But I need to know the date the quantity reached zero.
That date would always be "today," on the day the quantity = 0, but how do I make the date NOT update to "todays date" on the next day, and the next, etc. It needs to stay as the date that 0 qty was reached.
View 9 Replies
View Related
Oct 15, 2006
I have written a code but i can not make it stop where i want it to stop. I would like the code stop when cells(31,4).value reaches 0. Pls refer to attached sheet for a clear example.
The code is as follows
Sub production2()
If Cells(35, 4).Value > 0 Then
Cells(31, 4).Value = Cells(35, 4).Value
For j = 5 To 16
If Cells(36, j).Value < Cells(29, 4).Value Then If Cells(31, 4).Value > Cells(29, 4).Value Then Cells(37, j).Value = Cells(29, 4).Value
If Cells(36, j).Value < Cells(29, 4).Value Then Cells(37, j).Value = Cells(29, 4).Value
Cells(31, 4).Value = Cells(31, 4).Value - Cells(37, j).Value
Next j
End If
End Sub
View 9 Replies
View Related
Jan 16, 2008
Is there any code to pop up a message each time a cell value is not reached. For ex if the resulted formula in A1 is less than 0 to pop up a message "LOOSE"
View 4 Replies
View Related
Apr 11, 2012
I have the following information on the sheet named "Calculator"
01-Mar-0825510051005.0045'[test.xlsb]Product Price'!$D$256
01-Oct-09274975990.0054'[test.xlsb]Product Price'!$D$27501-Aug-10284981999.0058'[test.xlsb]Product Price'!$D$28501-Dec-10288621634.0058'[test.xlsb]Product Price'!$D$28901-Jan-11289054.00150'[test.xlsb]Product Price'!$D$96601-Sep-1129718001854.00150'[test.xlsb]Product Price'!$D$974
In column f i have the following formula {=CELL("address",INDEX('Product Price'!$D$1:$D$1014,MATCH(B2&E2,'Product Price'!$A$1:$A$1014&'Product Price'!$D$1:$D$1014,0),0))} that returns the cell address from where i want to start my sum function.
My sheet named "Product Price" looks like this:
255Mar-0839508R 45.00256Apr-0839539R 45.00257May-0839569R 45.00258Jun-0839600R 45.00259Jul-0839630R 48.00260Aug-0839661R 48.00261Sep-0839692R 48.00262Oct-0839722R 48.00263Nov-0839753R 48.00264Dec-0839783R 48.00265Jan-0939814R 48.00266Feb-0939845R 48.00267Mar-0939873R 48.00268Apr-0939904R 48.00269May-0939934R 48.00
I now require a formula in column g that will count how many times starting from the cell in given in column f it added the amounts downwards to reach the amount in cell d of the "calculator" sheet - it must thus add d256+d257+d258... until it is bigger or equal to the amount in cell d.
View 2 Replies
View Related
Feb 12, 2007
I want to Freeze my Header Row (A16 to T16) on my spreadsheet but I can't seem to get it to freeze. I wanted to have it freeze when that row reached the Top of the page but all I can do is freeze it and the 15 rows above it. Can one row be made to be visible at all times? I don't think so as I asked this question before but thought I would start by asking it again...
Now my workaround for that was to put the header row at the top of the page as well and freeze it. This works but when you initially open the spreadsheet it look weird because you see a header row on top and one 15 rows below it.
My question is is there a way to hide row 1 until a specific cell becomes active and then the code can undide the row? I want row one to become visible when the user gets to cell A41. Does anyone know how I can accomplish this or do you have any other suggestions for me to try?
View 9 Replies
View Related
Dec 18, 2009
10 12 13 12 10 11
40 30
? ?
Count values in the top row until the sum is greater than the relative value below
In this example the first ? would be 4 as 10 + 12 + 13 + 12 = 47 (greater than 40)
The second ? would be 3 as 12 + 13 + 12 = 37 (greater than 30)
I cant figure out how to do this with a formula! Custom Function needed?
View 9 Replies
View Related
Aug 9, 2007
I have a column that is a percentage(p%) which measures the fullness of the location(loc) that the item(ite) is in, which also has a corresponding location(loc) and item column(ite).
What I need to do is add as many items(ite) to one location(loc) as possible without exceeding 100%(p%), however if the value exceeds 100%(p%) then we need to start all over in a new location. The end result would be an unknown amount of unused locations.
If p% < 100 then add the next row's p% value, else start over with a new location. I am trying to add as many items to one location as possible, and once a location fills up, we will use the next one.
View 6 Replies
View Related
Jun 9, 2006
I have a macro that imports a report. If the Charge Type in column A is BTOREPLX, I need to prefill the field next to it in column B with the text "REPLX", e.g. "REPLXCDROM". I've attached an example of the report.
View 5 Replies
View Related
Feb 16, 2008
I have an excel file that linked to an external feed that receives stock prices in real time. on the file i have the stock name, the price paid and the current price. I would like to have a popup that shows up whenever a stock price has a 15% or higher return. I would like the popup to show the stock name. I realise that conditional formatting would highlight whatever is over 15%, but the workbook has multiple worksheets and I would like it to popup even when i am on another worksheet.
Enclosed is a copy of the file (the actual file has many more sheets) : john.zip
View 5 Replies
View Related
May 6, 2014
I have the following Macro to transpose data from a column into succesive rows. I need it to repeat, until it has processed all data in column A / until it reaches an empty cell in A.
Sub Macro1()
'
' Macro1 Macro
'
[Code]....
View 3 Replies
View Related
Feb 6, 2014
I have a spreadsheet that in column A has someones name, in Column B it has a number.
For example
Column A Column B
Bob Smith 1999
I am looking for a macro that will automatically send an email to this address for example test@test.com, when the number in column B reaches 1200.
I need the email to have in the body - "Bob Smith has reached 1200"
I need this macro to run against 20 sheets in my workbook.
View 4 Replies
View Related
Sep 17, 2012
On Sheet1, I have a list of names in Column A, with a corresponding value in Column B
NAME
VALUE
Alpha
3
Beta
2
Gamma
1
Delta
2
On Sheet2, I have a list of items that need to be assigned based on the values on Sheet1 (Assign to column would be blank, filled in by the macro/formula)
ITEM
ASSIGN TO
1
Alpha
2
Alpha
3
Alpha
4
Beta
[code]....
best way to automate the data on Sheet2? The items can be assigned in any order, it just needs to match the count on Sheet1.
View 4 Replies
View Related
Nov 18, 2013
I have a number of dates (columns) and under each date there is the demand value (Rows). Also, i have a column that has the current inventory. what im trying to do is to keep on adding the demand in one row (i.e multiple dates) until the sum just exceeds the inventory. After that, i would like to return sum the date at which we stopped adding. the point of this excercise is to see at which month will our inventory deplete according to the demand. Below is an example solved by hand.
Demand
Part #
month 1
month 2
[Code].....
View 9 Replies
View Related