2 ayrı döngüyü bir butona bağlamak , Yada EĞER kullanarak bir kodu revize etmek.

Muttaki

New Member
Joined
Mar 16, 2011
Messages
6
Merhaba arkadaşlar ;

Konu başlığı biraz tuhaf gelmiş olabilir fakat ; daha önceden arkadaşlarımın yardımı ile yazdığım bir uygulamanın kodlarında bir revizyona ihtiyacım var.

Bu konuda yardımcı olabileceklere şimdiden teşekkürler.

Gelelim sadedimize ;

Aşağıdaki kod eğer J sütunundaki herhangi bir değer "0" SIFIR ise "Elde stok Yok" değerini hücre içerisine yazıyor.

Fakat bu sefer ; Bu kodu bağladığım "Miktar Kontrol" butonunun işlevselliğini başka bir ifade ile niteliğini artırmam gerekiyor.

J sütununun kontolüne ayrıyetten I sütununun kontrolünü de eklemem gerekiyor , bu durum YADA ifadesini başka bir ifade ile bağlacını kullanmamı gerektiriyor.Aynı zamanda EĞER ifadesini I sütunu içinde kullanmam gerekiyor.

I sütunundaki rakamdan J sütunundaki rakam küçük ise J deki küçük rakamı sil ve aynı hücreye "Stok Miktarı Yetersiz + Value" Yaz.


Örneklemek Gerekirse

MEVCUT DATA===================================

Miktar Depo Miktarı

7654 6895
1425 1425
3000 2950
23 0

=============================================

Sonuç

Miktar Depo Miktarı
------ --------------

7654 Eldeki Miktar Yetersiz 6895
1425 1425
3000 Eldeki Miktar Yetersiz 2950
23 Elde stok Yok

==============================================

Code:
Private Sub CommandButton4_Click()
Dim Say As Byte, bul As Range
Say = Range("J108").End(3).Row
Set kontrol = Range("J9:J" & Say).Find("ELDE STOK YOK", , , 1)
If Not kontrol Is Nothing Then
MsgBox "DAHA ÖNCE MİKTAR KONTROLÜ YAPILMIŞ", 64, "Uyarı Mesajı" '"Www.ExcelVBA.Net"
Exit Sub
End If
If WorksheetFunction.CountIf(Range("J9:J" & Say), 0) = 0 Then MsgBox "MİKTAR HATASI YOK,DEPODAKİ TÜM MİKTARLAR YETERLİ": Exit Sub
  For Each bul In Range("J9:J" & Say)
    If CStr(bul.Value) = CStr(0) Then
       bul.Value = "Elde Stok Yok"
       bul.Font.ColorIndex = 3
       bul.Font.Bold = True
       bul.Offset(0, -1).Font.ColorIndex = 2
       bul.Offset(0, -1).Font.Bold = True
           
       bul.Offset(0, -2).Font.ColorIndex = 2
       bul.Offset(0, -2).Font.Bold = True
       
       bul.Offset(0, -3).Font.ColorIndex = 2
       bul.Offset(0, -3).Font.Bold = True
       bul.Offset(0, -4).Font.ColorIndex = 2
       bul.Offset(0, -4).Font.Bold = True
       bul.Offset(0, 1).Font.ColorIndex = 2
       
       
       bul.Offset(0, 2).Font.ColorIndex = 2
       bul.Offset(0, 2).Font.Bold = True
       
       bul.Offset(0, 3).Font.ColorIndex = 2
       bul.Offset(0, 3).Font.Bold = True
       
       bul.Offset(0, 4).Font.ColorIndex = 2
       bul.Offset(0, 4).Font.Bold = True
       bul.Offset(0, 4).Value = 0
       bul.Offset(0, 5).Font.ColorIndex = 2
       bul.Offset(0, 5).Font.Bold = True
       bul.Offset(0, 5).Value = 0
       bul.Offset(0, 6).Font.ColorIndex = 2
       bul.Offset(0, 6).Font.Bold = True
       bul.Offset(0, 6).Value = 0
       bul.Offset(0, 7).Font.ColorIndex = 2
       bul.Offset(0, 7).Font.Bold = True
       bul.Offset(0, 7).Value = 0
       bul.Offset(0, 8).Font.ColorIndex = 2
       bul.Offset(0, 8).Font.Bold = True
       bul.Offset(0, 8).Value = 0
       bul.Offset(0, 9).Font.ColorIndex = 2
       bul.Offset(0, 9).Font.Bold = True
       bul.Offset(0, 9).Value = 0
      
       
       Range(bul.Offset(0, -9).Address(False, False) & ":" & bul.Offset(0, 9).Address(False, False)).Interior.ColorIndex = 1
        
       'Else
        'MsgBox "MİKTAR HATASI YOK !"
        
       End If
      
       
       Next bul
       
                      
End Sub
Teşekkürler
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.

Forum statistics

Threads
1,223,625
Messages
6,173,387
Members
452,514
Latest member
cjkelly15

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