Pick The Number Farthest Down In A Column

Mar 17, 2009

The attachment shows a ledger that I am trying to build. My goal is to automatically add the Ledger balance(G) at the end of each day to the Investment cash balance(J) column. Some days there are multiple Ledger transactions, other days there are none. If there were no Ledger transactions on that day I would like to use the last recorded Investment cash balance. (ex. on weekends there will be no transactions)

Note: I want exactly one balance, the ending daily balance, per day on the investment side of the worksheet.

I have struggled with this all afternoon. My goal is to make this as simplistic as possible for two reasons. 1) I am not a master programmer by any means. 2) I want this file to open on any computer the has a MSExcel on it without have to install any addins.

For these reasons I am thinking it would be best to stay away from macros, which I am minimally proficient at creating.

Let me know if you have any good tricks to solve my problem. If macros are the ONLY or absolutely the BEST way to do this, then I guess you can twist my arm an we can go down that avenue.

View 14 Replies


ADVERTISEMENT

Pick Up A Specific Number From Column

Jun 9, 2007

I have two columns in excel. Column “A” where I have different group names column "B" all the different numbers and column “C” where I have ranked based on column “A”. I need a formula that would pick a number that is ranked 51 with specific group. Currently I’m using below formula (where MC1 represents one of the groups)that is working great unless there is no tie, however if there is a tie for rank 51 and let say two numbers are 22 and 22 the formula will return 44.

SUMPRODUCT(--(Terr!$Q$16:$Q$518=MC1),--(Terr!$AC$16:$AC$518=Main!C69+1),Terr!$Z$16:$Z$518)

View 4 Replies View Related

Pick Closest Number To X And Display Corresponding Value

Sep 16, 2013

i have a sample of data in a column,

.....A
A1 20.5
A2 -20.1
A3 19.99
A4 -20.12
A5 20.15
A6 -20.15

In other columns of the same book i have the values;

...............C ..................D ....................E
................x ................CDF ...............1-CDF
1 .......-20.782066 ......0.000302 .......0.999698
2 .......-20.689948 ......0.000311 .......0.999689
3 .......-20.59783 ........0.000321 .......0.999679
4 .........20.505711 ......0.000331 .......0.999669
5 .........20.413593 ......0.000341 .......0.999659
6 .........20.321475 .......0.000352 .......0.999648

how to pick the closest value to any number in A from column C, and then depending on whether its positive or negative, display the corresponding value from D or E.

So if we had -20.77 in col A, it would pick the closest number from col C (In C1) and then display the value from D1. Similarly, if we had +20.4 in col A, it would pick the closest number from col C (C5), and display the corresponding value from E, E5.

View 6 Replies View Related

Excel 2010 :: Return Positive Or Negative Value Farthest From Zero Based On Criteria From Another Range

Mar 11, 2014

I am creating a template in Excel 2010 and am having some issues due to a combination of positive and negative values. Specifically, I have a named range of values that can have either a positive or negative deviation from zero. I need to return the value that has the greatest deviation from zero (either + or -) based on criteria in another named range I have used the following array formula with success for the "Y" range:
{=IF(PRB=M1,INDEX(Y,MATCH(MAX(ABS(Y)),ABS(Y),0)),MAX(Y))}

However, if there are not any negative values, as in the "Z" range, it only returns MAX(Z) for the entire range, when I would like ti to return "0.00134" (the largest deviation from zero based on the PRB range criterai. Would this be better accomplished using VBA?

PRB
Y
Z
A90B90
A90B-90

[Code].....

View 3 Replies View Related

VLOOKUP And SUM Formulas: Pick Up Another Value In Column 9 And Should Add Value In Column 7 And 9 And Return It

Apr 6, 2007

=IF(ISNUMBER(VLOOKUP($E8,Su!$D:$K,7,FALSE)),VLOOKUP($E8,Su!$D:$K,7,FALSE),)*$I8

In the first vlookup it picks up a value. I need to do the same vlookup function but it should also pick up another value in column 9 and should add value in column 7 and 9 and return it. Employee id numbers are in column E in the first page.My formula checks for the employee id in Su sheet and retrieves the value from the seventh column. I need to retrieve also from 9 th column and add them together.

View 8 Replies View Related

How To Pick Name From Column Based Value Difference In Column B

Dec 12, 2013

I have data like this:

NameRank
pietro30
fabri35
mauri60
andrea45
luigi50
anna90
federica100
julia120

Now I want to pick names from column A with rank difference between name should equal to 30.

Expected result

NameRank
pietro30
mauri60
anna90
julia120

View 7 Replies View Related

Formula To Pick Last Value In A Column

Mar 23, 2009

Is there a formula or function that allows me to always select the lowest (not min) actual lowest in a column? For example, I have a formula in A1 and I need it part of it to always reference the bottom of a certain range (i.e. A5.A200).

So one day the lowest would be A7 but a week later it could be A8. I don't want to have to keep changing the formula in A1 to find the lowest value. I will be adding data on a regular basis.

View 6 Replies View Related

Pick Random Name From Column

Dec 24, 2007

I've got a list of names in a column in excel, what's the easiest formula to pick a random name from that list? (guess I can use f9 to randomize)

View 6 Replies View Related

Pick Up Line Items By The Value In One Column

Feb 12, 2014

As per attached file, there are altogether 4 sub-files and 1 master file.

I'll need the code to automatically pick up the top 9 revenue(highlighted in Green) and top 9 EBIT(highlighted in Yellow) by values in Column N from 4 sub-files and paste to the master file.

Attached File : Example file1.xlsx‎

View 9 Replies View Related

Pick Values From One Column And Organize In Another

Mar 31, 2009

I have a column of numbers and I want to copy numbers, with a constant periodicity, and paste in a new column. In the example below, I copy values from column A and past in column B, picking only every third value:

A B
1 1
2 4
3 7
4 10
5
6
7
8
9
10

View 7 Replies View Related

Pick Combobox Column To Display (ID Vs Name) Via VBA

Jul 2, 2013

I have some vba code that opens up notepad and populates it with data from Access 2010. Everything works great including the notepad function, the database, and how the data is stored and displayed in the table/form.

The problem: I want to display the service name not the ID in notepad

I passed the field that I want to include in notepad as a string. However, it returns the ID and not the name of the person.

I don't want to change anything in the form or field property because it works perfect as is.

Is there a way to pick which column to display in the Email by vba code?

Column 0 = the ID and Column 1 = the name

Code:
Me.fieldName.Column(1)
^^That doesn't work for me

Here's my code (it works)

Code:
Private Sub cmdNoteAccept_Click()
Dim strCode As String

strCode = strCode & Me.Servicer & ": "
strCode = strCode & Format(Me.DateCreated, "MM/DD/YYYY")

strCode = strCode & "Insert message here"

Shell "Notepad.exe", vbNormalFocus
SendKeys strCode, True
End Sub

View 3 Replies View Related

VB Code To Pick Best Pricing By Qty Column

Aug 20, 2008

I receive hundreds of part numbers to quote daily. I send out RFQ's to my suppliers and they respond with pricing. I gather all the data into a similar excel sheet below and assign the wining supplier.

in automating a task that will compare the group of data for best pricing and populate a "WIN" code in column "A" if that supplier was chosen for the that qty pricing.

Here is the excel example.

******** ******************** ************************************************************************>Microsoft Excel - Book1___Running: 11.0 : OS = Windows XP (F)ile (E)dit (V)iew (I)nsert (O)ptions (T)ools (D)ata (W)indow (H)elp (A)boutI22=ABCDEFGHI1Scenario #1 - Supplier chosen for best pricing based on column "E"        2WINNERPART#VEN IDBRK1COST1BRK2COST2BRK3COST33 123ALL90110510107.54 123FO3511258107.755 123RO501958.51086WIN123AR651858.751087         8         9Scenario #2 - Supplier chosen for best pricing based on column "G"        10WINNERPART#VEN IDBRK1COST1BRK2COST2BRK3COST311 123ALL90110510107.512 123FO3511258107.7513WIN123RO501958.510814 123AR651858.7510815         16         17Scenario #3 - Supplier chosen for best pricing based on column "I"        18WINNERPART#VEN IDBRK1COST1BRK2COST2BRK3COST319WIN123ALL90110510107.520 123FO3511258107.7521 123RO501958.510822 123AR651858.75108Sheet1 [HtmlMaker 2.42] To see the formula in the cells just click on the cells hyperlink or click the Name boxPLEASE DO NOT QUOTE THIS TABLE IMAGE ON SAME PAGE! OTHEWISE, ERROR OF JavaScript OCCUR.

View 10 Replies View Related

If Formula: Pick Out Which Is The Largest Figure Of Column A,B,C,D For Each Row

Oct 14, 2008

See attached. This is a report that I have to do every month. I cant work out a formula for it. What I need is a formula that will pick out which is the largest Figure of column A,B,C,D for each row and put the corresponding header in column G. i have manually put these in. Would anyone know a formula i could use for this.

View 3 Replies View Related

Putting Index Column - VLookup Does Not Pick Up Dates?

Apr 5, 2014

does it not like dates? i have columns of data and i wish to search it for each month and then print a months worth. here is part of the data. maybe vlookup does not like dates? i tried putting an index column on the left, 1,2,3,4... but it still would not pick up "Jun"

View 8 Replies View Related

Compare Multiple Rows And Pick Largest Value From A Column

Dec 10, 2013

See data in the attached image in Col A thru Col D. In Col E, I want to populate the max value for the same part # from Col C or Col D depending upon value in Col B.

I have included a sample of the expected results in Col E for illustration purposes.

For example Row 3,5,6 are all part # 1 with Col B ="Y", suggesting they are interchangeable parts, therefore, I would like the formula to have ability to pick 10 (since its largest between 3,10,0) from Col C.

Capture5.PNG

View 1 Replies View Related

Pick Data From A Specific Row/column (eg 10/B) Related To Active Cell

Dec 2, 2009

I have a spreadsheet with my Periods along row 10. e.g. C10: "1", D10: "2", E10 "3", F10: "4", G10: "5" etc. (green on the attached sheet). I have my departments along column B, e.g. B11: "Baked" B12: "Fresh" B13: "Frozen" (yellow on the attached sheet)

what I need and cannot work out is some VBA code that will populate two variables (lets call them Period & Department) when I click on one of the figures. For example if I click on cell: if I click E14: Period would have the contents of cell E10, and Department the contents of cell B14.

if i click G14: Period would have the contents of G10, and Department the contents of cell B14 again. I know how to get the click on the cell to work properly etc, and I have code to slot these variables into that works very nicely, I just can't get this bit to work!!!!

View 2 Replies View Related

Pick Range Of Dates And Find Number Of Days Without Sales Between Those Dates

Feb 23, 2014

Here is my set up:

A2 to BF2 is a range of dates

A3 to BF3 are sales. Days without sales are 0.00

I want to pick a range of dates and find the number of days without sales between those dates. So, a formula that will look to a start date in A1 and an end date in B2, and then count the number of days that did not have sales between. Index/Match/Countif/Dateif I can't seem to make anything work.

View 3 Replies View Related

Formula To Have Spreadsheet 2 Pick Items From Pass / Fail Column On Spreadsheet 1

Jan 23, 2012

Workbook 1 has 2 spreadsheets. Spreadsheet 1 contains Item and Pass/Fail Columns. under the item column is the serial number of the item tested. the Pass/fail column has the serial number duplicated if it failed tested. what is the formula is to have spreadsheet 2 pick the items from the pass/fail column on spreadsheet 1?

View 4 Replies View Related

Count Number Of Clusters / Groups Of Given Number Occurs In Column

Mar 2, 2012

I have data in a column (G) consisting of zero and ones. I would like to count the number of clusters of the number 1 in the data. For example in the data below there are 8 ones. But instead, I need to calculate how many groups of 1s occur. So in the case below the group of 1s = 3.

In terms of what defines a group. Whenever there is a zero either before or after the occurance of a 1 constitues a group, i.e the groups are broken out by zeros.

0
0
0
0
1
1
1
0
0
0
0
0
0
0
0
0
0
0
0
0
1
1
1
1
0
0
0
0
0
0
1
0
0

View 3 Replies View Related

Rounding Number And Then Shrinking Number Of Digits To Fit With Narrow Column

Feb 6, 2013

I have a number, eg, 1234567 and rounded to prepare the shrink of the size of the number like

= Round(a1, -3). I have, say now, 1234000.

I need to strip "000" from the number and place 1234 to a cell.

View 4 Replies View Related

Look Up In Column A Of "AS" Once It Find That Number I Need It To Return The Number Thats In Column E Of That Row To Sheet "IS"column D

Nov 20, 2008

i have 2 sheets one called "IS" and the other called "AS" in cell a2 of "IS" is a number that i need to have excel look up in column a of "AS" once it find that number i need it to return the number thats in column e of that row to sheet "IS"column d. summary: a2 of "IS" looked up on sheet "AS" and returns the number in column e to cell d2 of "IS"

View 3 Replies View Related

Carrying Over Negative Number To Next Column As Positive Number?

Aug 21, 2014

I go negative in one column I want it to show up in the next column as a positive number because when I add my income and subtract my bills and the negative from last month to get the what cash I'll have left it screws up because negative subtract a negative is a positive. So how do i get the sum of say B9 to from -$5.00 to +$5.00 into C4 so when i subtract C4 From my income it wont add to it.

View 1 Replies View Related

VBA To Number Rows In A Column But Starting From Specific Number

Mar 10, 2014

I would like to create a vba script when ran an input.box comes up and asks you to "enter number you want to start numbering from" and when the number is entered in the input box. e.g "7654", excel starts numbering each cell in column A from 7654 until there is an empty cell in column B.

View 7 Replies View Related

Compare Column Number Of Cell With Last Cell Column Number In Loop

Jan 11, 2014

I am trying to save an excel sheet to .csv format with the following macro:

[Code] ......

The following part of the code needs to be modified so that the commas appear correctly in .csv file even for null values for any given column.

[Code] .....

I have attached the Sample Sheets. Source sheet and the Result sheet. The Result sheet doesn't provide the required result. Some data are missing and unwanted commas have been added. How to correct the logic in the above piece of code.

Attached File :

Result Sheet.csv‎
Source.xlsm‎

View 14 Replies View Related

Countif- Where Column A Is Equal To A Specific Number And Column B Is Equal To Another Number

Jun 29, 2008

I'm trying to count if there are situations where column a is equal to a specific number and column b is equal to another number.

both columns are numbers. Does anybody have a good idea how to do this, maybe countif, but i am not sure how to do more than one item with that.

View 9 Replies View Related

Pick Up Some Value's From A Table

Oct 6, 2008

I have the next situation:.......

Qmin - is the first smallest value than Q (in this case Qmin=[B5]=0.63)
Qmax - is the first highest value than Q (in this case Qmax=[B6]=0.77)
Hmin - the value attached to Qmin (in this case Hmin=[A5]=0.004)
Hmax - the value attached to Qmax (in this case Hmax=[A6]=0.005)

question: how can i make Qmin,Qmax,Hmin,Hmax to pick up themselfs if I have a given Q=[B12] value????

View 4 Replies View Related

Pick Five Numbers

Mar 19, 2009

I have a worksheet that has all the numbers that I picked for the pick 5 lottery, listed from B24:N71. These are 5 different numbers. What I want to do is highlight the cells that equal the 5 numbers that were drawn, which I have located at S5,T5,U5,V5,W5

View 11 Replies View Related

Pick From List

Jul 17, 2007

I am managing a group of sales reps and when they sell a product they receive commissions I am trying to develop something in excel that in cell B5 there will be a drop down that they can choose one of three products (call them A,B,C) then in C5 another drop down will be there w/ two options (new, refurb), then the result will be in D5 depending on the selections. The parameters would be:

Product A new = $10
B new = $20
C new = $30
A refurb = $5
b refurb = $15
C refurb = $25

So if the rep dropped down in cell B5 Product B then dropped down in cell C5 Refurb, the result would appear in D5 and would equal $15.

View 9 Replies View Related

Using A Message Box To Pick Someone

Jun 24, 2006

Basically I want a button that once pressed generate a message box that says a persons name. There are 3 names, so the message box should show name 1 1st and then when pressed again show name 2 and you guessed it then name 3!

View 9 Replies View Related

Find Cell Value Row Number & Use For Column Number

Jun 2, 2008

to update these values via a form in this sheet. I can find the correct row to be edited by entering a value from column A and B. The problem is if I want display the values of that row first and then change it. If I want to change row 10 data how can I bring back the value in ROW 3 AND THE COLUMN VALUE? The next step would be to do the actual update if I want to change ROW 10 to "Ooi" and a sales value of 200?

This is what I have done so far:

Dim myRows As Integer

With Sheets("Mrt")

'Retrieve history information for row
For myRows = 4 To 49
If comboxDay.Text = Range("A" & myRows).Value And textboxdescription.Text = Range("B" & myRows).Value Then
textboxbedrag.Text = Range("C" & myRows).Value
chkBTW_Ja.Value = Range("D" & myRows).Value
txtNota.Text = Range("S" & myRows).Value
End If
Next
End With

Picture attached to show how sheet looks like.

View 9 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved