Rows loop to Columns Loop

AndreasLim92

New Member
Joined
Nov 24, 2019
Messages
2
Office Version
  1. 365
Platform
  1. Windows
I am trying to loop from rows to columns with a different worksheet. From the [DATA] sheet check for two statements, First, I check the [Type] and then check the [Series]. After getting the value from [Type] range and [Series] range, copy [Result] range value to [RESULT] with according to the [DATA] sheet of [Part] range value. And the result I want is like this [RESULT].

I am trying with some code, but it doesn't work properly. Please help me how to fix my code. And I am very sorry for my poor English.

DATA Sheet DATA
RESULT sheet RESULT

VBA Code:
Option Explicit

Private Sub Result_Click()

Dim DATA As Worksheet: Set DATA = Worksheets("DATA")
Dim Result As Worksheet: Set Result = Worksheets("Result")

Dim i As Long
Dim j As Long: j = Worksheets("DATA").Cells(Rows.Count, 2).End(xlUp).Row

Dim k As Long

For i = 3 To j

With DATA

If .Cells(i, 2).Value = Worksheets("Result").Range("B4").Value Then

If .Cells(i, 3).Value = Worksheets("Result").Range("C2").Value Then

For k = 4 To 32

Worksheets("Result").Cells(k, 3).Resize(, 4).Value = .Cells(i, 5).Value

i = i + 4

Next k

End If

End If

End With

Next i

End Sub
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
Cross posted
While we do allow Cross-Posting on this site, we do ask that you please mention you are doing so and provide links in each of the threads pointing to the other thread (see rule 13 here along with the explanation: Forum Rules). This way, other members can see what has already been done in regards to a question, and do not waste time working on a question that may already be answered.

Please supply all relevant links.
Thanks
 
Upvote 0

Forum statistics

Threads
1,214,839
Messages
6,121,887
Members
449,057
Latest member
Moo4247

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