Need help with looping and find the same day, and month from the loop

nu_miniy

New Member
Joined
Jun 1, 2016
Messages
8
Hi guys, I new to excel and I'm having problem how to program it to my vba..
I have worksheet, that contain column: DATE, PIECES, and CODE THINGS

DATE

<tbody>
</tbody>
PIECES

<tbody>
</tbody>
CODE THINGS

<tbody>
</tbody>
01/01/2015

<tbody>
</tbody>
7
SQ-209-786

<tbody>
</tbody>
01/01/2015

<tbody>
</tbody>
1
JP-333-210

<tbody>
</tbody>
01/01/2015

<tbody>
</tbody>
2
BW-201-765

<tbody>
</tbody>
02/01/2015

<tbody>
</tbody>
1
BW-299-745

<tbody>
</tbody>
03/01/2015

<tbody>
</tbody>
5
BW-201-765

<tbody>
</tbody>
03/01/2015

<tbody>
</tbody>
2
SQ-209-788

<tbody>
</tbody>
04/01/2015

<tbody>
</tbody>
4
JP-333-210

<tbody>
</tbody>

<tbody>
</tbody>
So I want the vba search from 1 January- 31 December, for each row the vba will take the CODE THINGS to search in "sheet2" and use the PIECES to do some formula in "sheet2"

If try with this code:
Code:
Sub cari()
Dim i As Integer, j As Integer


For i = 1 To 12 'for month'
    For j = 1 To 31 'for day'
        For Each cell In Sheets("sheet1").Range("a1:a100")
            If cell.Value.Day = j And cell.Value.Month = i Then
                hasil = cell.Address()
                MsgBox (hasil)
                
            End If
Next
    Next
        Next
End Sub

I tried to find if my code can show the cell address but I got error "424"..
Please help me solving the problem..
Thanks & regards
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.

Forum statistics

Threads
1,214,869
Messages
6,122,012
Members
449,060
Latest member
LinusJE

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