comparing 9 columns

fredrerik84

Active Member
Joined
Feb 26, 2017
Messages
383
Hi my head is spinning here a little im trying to compere 9 column number to find highest values (also this number will be expanded later)

I want to return the highest number of these 3 Columns"J" "N" "R" result stored as variable double
I want to return the highest number of these 3 Columns"K" "O" "S" result stored as variable2 double
I want to return the highest number of these 3 Columns"L" "P" "T" result stored as variable3 double

results will be var1 + var2 + var3 in column W

Is this possible to to somehow? some of the rows in the columns might also be empty
data rows start from 12 (header in row 11) its around 200-300 data rows (varies)

I started making a for loop code for this but all my criterias makes me dizzy :/ hope someone a little more skilled know a good solution for this
 
Last edited:
The code worked perfectly for me

Data sample below
Max of J, N, R = 450 (gray) ---> to X2
Max of K, O, S = 100 (blue) ---> to Y2
Max of L, P, T = 200 (yellow) ---> to Z2


J
K
L
M
N
O
P
Q
R
S
T
11
Header​
Header​
Header​
Header​
Header​
Header​
Header​
Header​
Header​
12
20​
10​
8​
20​
100​
10​
10​
10​
5​
13
22​
8​
4​
18​
80​
12​
8​
10​
5​
14
40​
15​
5​
4​
30​
200​
6​
10​
5​
15
30​
10​
450​
16
6​
17

<tbody>
</tbody>


Results in X, Y, Z

X
Y
Z
1
2
450​
100​
200​

<tbody>
</tbody>


It should work for you too.

M.
 
Upvote 0

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
Hi thanks for responding so fast..

It did work for 1 row that is correct., but it should calculate like this:

Prises in J,N,P are for same product(same row) best price to zell X
Prises in K,O,S are for same product(same row) best price to zell Y
Prises in L,P,T are for same product(same row) best price to zell Z

all of this is for row 12. now it should work downwards and also fetch best price for row 12 to "LastRow"

as you see in your sample it finds best price from row 12,14 and 15 but those are 3 different products

here is the code I started to work on before posting here (also before adding column R,S,T), and this will not work when I add more and more columns I will need something like your code to quickly identify the highest value

Code:
For i = 12 To lr
If Cells(i, "J") > Cells(i, "N") Then
      var1 = Cells(i, "J")
end if
If Cells(i, "K") > Cells(i, "O") Then
      var2 = Cells(i, "K")
end if
If Cells(i, "L") > Cells(i, "P") Then
      var3 = Cells(i, "K")
end if
next i
 
Upvote 0
Just to clarify

"J12" "N12" "R12" is product 1 a
"K12" "O12" "S12" is product 1 b
"L12" "P12" "T12" is product 1 c

Highest price should be stored in row 12 "X,Y,Z"
then:
"J13" "N13" "R13" is product 2 a
"K13" "O13" "S13" is product 2 b
"L13" "P13" "T13" is product 2 c

Highest price should be stored in row 13 "X,Y,Z"

"J14" "N14" "R14" is product 3 a
"K14" "O14" "S14" is product 3 b
"L14" "P14" "T14" is product 3 c

Highest price should be stored in row 14 "X,Y,Z"

and this system will continue to last row
 
Last edited:
Upvote 0
Please, to get more help try to provide a data sample (~5 rows) along with expected results.
Otherwise i have to guess what you really want . It seems i'm not doing this correctly - not my lucky day ;)

M.
 
Upvote 0
I found a solution, still with my skill level its in a loop like this its a little on the slow end maybe you have a better suggestion.

Code:
Sub aTest()
Dim i As Long, lr As Long
Dim j As Double, n As Double, r As Double
Dim k As Double, o As Double, s As Double
Dim l As Double, p As Double, t As Double


lr = Cells(Rows.Count, "J").End(xlUp).Row + 1
For i = 12 To lr
   j = Cells(i, "J")
   n = Cells(i, "N")
   r = Cells(i, "R")
   k = Cells(i, "K")
   o = Cells(i, "O")
   s = Cells(i, "S")
   l = Cells(i, "L")
   p = Cells(i, "P")
   t = Cells(i, "T")
   Cells(i, "X").value = WorksheetFunction.Max(j, n, r)
   Cells(i, "Y").value = WorksheetFunction.Max(k, o, s)
   Cells(i, "Z").value = WorksheetFunction.Max(l, p, t)
Next i
End Sub
 
Upvote 0
This worked for me - data in Sheet1 columns K:U; results in W:Y (according your file)

Code:
Sub aTest()
    Dim lastRow As Long, vData As Variant, vResult As Variant
    Dim i As Long
    
    With Sheets("Sheet1")
        lastRow = .Cells(.Rows.Count, "C").End(xlUp).Row
        vData = .Range("K12:U" & lastRow)
        .Range("W12:Y" & lastRow).ClearContents
        vResult = .Range("W12:Y" & lastRow)
        
        For i = LBound(vData, 1) To UBound(vData, 1)
            If vData(i, 1) <> "" Or vData(i, 5) <> "" Or vData(i, 9) <> "" Then
                vResult(i, 1) = Application.Max(vData(i, 1), vData(i, 5), vData(i, 9))
                vResult(i, 2) = Application.Max(vData(i, 2), vData(i, 6), vData(i, 10))
                vResult(i, 3) = Application.Max(vData(i, 3), vData(i, 7), vData(i, 11))
            End If
        Next i
        .Range("W12:Y" & lastRow) = vResult
    End With
End Sub

M.
 
Upvote 0
I tested your code and it works perfectly.. Much better then what I produced.. There is just one small problem as your code is to advanced for me to edit if it's needed.. Lol

Great job
 
Upvote 0
You are welcome. Glad to help :)

My code is not so complex.
Gets the lastRow ibn column C
Passes the data to a variant array (vData) to speed processing (avoid access the cells on the worksheet).
Prepares another variant (vResult) to receive the results.
Loop through vData; calculates the max, for each row, of the values in columns 1-5-9, 2-6-10, 3-7-11 of vData and passes the results to, respectively, columns 1, 2 and 3 of vResult.
At last, transfers the values in vResult to range W12:Y & lastRow
That's it!

M.
 
Upvote 0
thanks alot for taking your time to explaining this to me - i think I will be able to edit this ,,

what a brilliant code

have a nice weekend

cheers :)

edit:
380 rows in less then a sec , you could say that im quite happy with this
 
Last edited:
Upvote 0

Forum statistics

Threads
1,216,136
Messages
6,129,080
Members
449,485
Latest member
greggy

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top