DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Aslında bunun cevabının oldugunu biliyorum yeni konu acmamak icin cok baktım fakat goremeyince acmak durumunda kaldım.
formülde
a1 3
b1 2
c1 =a1*b1 (6) yazıyor iken
c1 hücresine 6 yazdıgımda a1 e 3 yazdırmak istiyorum
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, Range("B2,D3:D" & Rows.Count)) Is Nothing Then Exit Sub
If Target.Cells.Count > 1 Then Exit Sub
If Target.Address(0, 0) = "B2" Then
With Range("D3:D" & Cells(Rows.Count, "B").End(3).Row)
.FormulaR1C1 = "=R2C2*RC[-1]"
End With
Else
If Target.HasFormula Then Exit Sub
If Target <> "" And Target.Offset(0, -1) <> 0 Then
Range("B2") = Target / Target.Offset(0, -1)
End If
End If
End Sub