Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So I have a chart that looks something like this. Assume that the top left value, 1, is in cell A1:

x=    1    2    3    4    5    6    7    8

      4    3    2    1    2    3    4    5

      9    8    7    6    7    8    9    10

      8    7    6    5    4    3    2    1

Sum= 21   18   15   12   13   14   15    16

There are x values from 1 to 8, and a three columns of values resulting from using it an equation or something below it. The sum is the sum of the three values below their corresponding x-value.

I'm stuck trying to figure something out that will go through the row of sums, find the smallest value, and then assign it's corresponding x-value to a variable. I also need to assign the values to the left and right of that x-value to other variables.

For this particular chart, 12 is the smallest of the sums, so I would assign variable1 = 4, since that is that column's corresponding x-value. Then my second variable, which is called lowerbound, would equal 3, since it is to the left of x = 4, and my third variable, which is called upperbound, would equal 5, since it is to the right of x = 4.

If I could get the cell address returned of the x-value that corresponds to the smallest sum, then I could assign it to a variable, and then simply offset from that cell to assign the other variables. Even if I could make a program that will return me the cell of the minimum sum value, I could offset to the x-row, and go from there.

How would I do something like that?

TL:DR: To ask more clearly, since that's a lot of words: What would a program look like that detects the smallest value in the sum row, and returns the cell address of that value?

The length of the rows are an unknown, and vary a lot, but the length of the columns are given. They do change depending on the problem, but they will always be known. So I will always know how many rows are in a column, but I will not know how many columns are in a row.

This is the most confusingly-worded thing I've ever written in my entire life, but I hope I've explained it well enough to make some sense.

You guys really are amazing, by the way. I've gotten so far on this program, and it's all because of how helpful you are. I honestly think I would still be stuck at the beginning with you guys! You're willing to tolerate a newbie's incessant questions.

share|improve this question

3 Answers

up vote 8 down vote accepted

I am assuming that the sum is in A4:H4. Please change as applicable

You can use a formula like

=CELL("address",INDEX(A4:H4,MATCH(MIN(A4:H4),A4:H4,0)))

If you want to use VBA then you can use this

Sub Sample()
    MsgBox Application.Evaluate("=CELL(""address"",INDEX(A4:H4,MATCH(MIN(A4:H4),A4:H4,0)))")
End Sub
share|improve this answer
What exactly does Match() do? And thank you for your help! Edit: Also is there a way to do this that doesn't involve knowing the length of the row? – TheTreeMan Jul 24 '12 at 20:33
1  
The MATCH function searches for a specified item in a range (range: Two or more cells on a sheet. The cells in a range can be adjacent or nonadjacent.) of cells, and then returns the relative position of that item in the range. I would recommend checking the Excel's inbuilt Help. for CELL, INDEX, MATCH etc... – Siddharth Rout Jul 24 '12 at 20:35
Ha, you posted this as I was writing my answer. I'm out of votes for today, will upvote you later. – JimmyPena Jul 24 '12 at 20:37
1  
x? Can you give me an example using the sample data that you posted? – Siddharth Rout Jul 27 '12 at 14:48
1  
Ah I see. Yes this can be achieved. Will the X values always remain in Row 1? – Siddharth Rout Jul 27 '12 at 15:42
show 9 more comments

Using your example, the following formula returns the cell address in row 1 whose value in row 5 is the lowest:

=ADDRESS(1,MATCH(MIN(A5:H5),A5:H5,0))

And if you want that cell's value, use INDIRECT. It takes the address as a string.

=INDIRECT(ADDRESS(1,MATCH(MIN(A5:H5),A5:H5,0)))

share|improve this answer
Ha, you posted this as I was writing my answer. I'm out of votes for today, will upvote you later. – JimmyPena 1 min ago+ 1 Sorry LOL :) – Siddharth Rout Jul 24 '12 at 20:38
So, first of all, I'm using Excel VBA to do this. Would I just use Application.Evaluate("=Cell(ADDRESS(1,MATCH(MIN(A5:H5),A5:H5,0))) to do so? My main issue right now is I'm not too sure how to make this information usable? I can get the top one to give me the address of the cell in the form of $A$5,a nd I can get the indirect one to give me the value in the cell, but I'm not sure how to set these values to variables and actually use them? I keep getting a data type mismatch. My goal is to offset from the cell address in row 1 whose value in row 5 is the lowest, but I'm not sure how. – TheTreeMan Jul 27 '12 at 14:38
Siddharth's answer shows you how to use the Evaluate function to return the value of a worksheet function in VBA. – JimmyPena Jul 27 '12 at 16:32

If you sum the columns by taking the sum of the array. Here is the VBA version:

For j = 1 To 8
     For i = 1 To 3
          sum(j) = sum(j) + Cells(i + 1, j + 1)
    Next i
    Cells(5, j + 1) = sum(j)
Next j
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.