DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Private Sub UserForm_Initialize()
For x = 2 To [a65536].End(3).Row
If Cells(x, 2).Value <= 60 Then
uruntekst = Cells(x, 1).Text & Chr(10) & uruntekst
End If
Next
MsgBox "Aşağıdaki Ürün Gruplarında Stok Azalmıştır" & Chr(10) & Chr(10) & uruntekst, vbInformation, "Dikkat"
End Sub
Private Sub CommandButton1_Click()
For x = 2 To [a65536].End(3).Row
If Cells(x, 2).Value <= 60 Then
Listbox1.AddItem Cells(x,1).Text
End If
Next
End Sub
Private Sub UserForm_Activate()
For i = 2 To [a65536].End(3).Row
If Cells(i, 2)=0 then goto 10
If Cells(i, 2) < 60 Then MsgBox Cells(i, 1) & " isimli ürünün bakiyesi azalmıştır."
10:
Next
End Sub
Private Sub UserForm_Activate()
WITH SHEETS("RAPOR")
For i = 2 To .[a65536].End(3).Row
If .Cells(i, 2)=0 then goto 10
If .Cells(i, 2) < 60 Then MsgBox .Cells(i, 1) & " isimli ürünün bakiyesi azalmıştır."
10:
Next
END WITH
End Sub