- Katılım
- 2 Mart 2006
- Mesajlar
- 103
- Excel Vers. ve Dili
- Office 2003 Türkçe
Herkese Merhaba.
Sub topla()
For x = 2 To [a65536].End(3).Row
Cells(x, 7) = WorksheetFunction.Sum(Cells(x, 2), Cells(x, 3), Cells(x, 4), Cells(x, 5), Cells(x, 6))
Next x
End Sub
1- Yukarıdaki kod ile A sütunundaki boş olmayan hücrelerin satır toplamını g sütununa aldırıyorum. Fakat A sütununda arada boş satır olduğu zaman g sütununa 0 "sıfır" yazıyor. A sütunu boşsa "0" yazmamasının kodlu çözümü nedir acaba.
2- Cells(x, 7) = WorksheetFunction.Sum(Cells(x, 2), Cells(x, 3), Cells(x, 4), Cells(x, 5), Cells(x, 6)) kodu kısaltılabilir mi .
İlgilniz için şimdiden teşekkürler.
Sub topla()
For x = 2 To [a65536].End(3).Row
Cells(x, 7) = WorksheetFunction.Sum(Cells(x, 2), Cells(x, 3), Cells(x, 4), Cells(x, 5), Cells(x, 6))
Next x
End Sub
1- Yukarıdaki kod ile A sütunundaki boş olmayan hücrelerin satır toplamını g sütununa aldırıyorum. Fakat A sütununda arada boş satır olduğu zaman g sütununa 0 "sıfır" yazıyor. A sütunu boşsa "0" yazmamasının kodlu çözümü nedir acaba.
2- Cells(x, 7) = WorksheetFunction.Sum(Cells(x, 2), Cells(x, 3), Cells(x, 4), Cells(x, 5), Cells(x, 6)) kodu kısaltılabilir mi .
İlgilniz için şimdiden teşekkürler.