Data Notes IM3
Data Notes IM3
Loop
x = x + 1
y = x + 1
Loop
End With
End Sub
================================================================================
============================
Private Sub Unik_data()
With Worksheets(ComboBox2.Text)
Sheets(ComboBox1.Text).Range("D4:D16000").AdvancedFilter Action:=xlFilterCopy, _
CopyToRange:=.Range("D3"), unique:=True
Range(.Range("D3"), .Range("D3").End(xlDown)).Copy
.Range("E3").PasteSpecial , Transpose:=True
.Range("D3:E3").EntireColumn.Delete
End With
End Sub
================================================================================
============================
Private Sub Data_Boneka()
Worksheets(ComboBox1.Text).Activate
Range("f4").Activate
Do While IsEmpty(ActiveCell.Offset(0, -5)) = False
ActiveCell.FormulaR1C1 = "=rc[-5]&rc[-4]&rc[-3]&rc[-2]"
ActiveCell.Offset(1, 0).Select
Loop
End Sub
================================================================================
============================
Private Sub Looking_For_My_Data()
Worksheets(ComboBox2.Text).Activate
Range("D4").Select
Do While IsEmpty(ActiveCell.Offset(-1, 0)) = False
ActiveCell.FormulaR1C1 = "=index('Notes IM3'!R4C5:R20000C5,match(rc[-3]&rc[-2]&r
c[-1]&R[-1]C,'Notes IM3'!R4C6:R20000C6,0),1)"
ActiveCell.Offset(0, 1).Select
Loop
End Sub