Hücre içerisine 100 yazıldığında yazı tipi boyutu 8 olması gerekiyor.
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, [d:aj]) Is Nothing Then Exit Sub
If Target.Cells.Value > 99 Then
Target.Cells.Font.Size = 8
Else
Target.Cells.Font.Size = 10
End If
End Sub
kod hata veriyor.Nasıl düzeltebilirim.Teşekkürler
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, [d:aj]) Is Nothing Then Exit Sub
If Target.Cells.Value > 99 Then
Target.Cells.Font.Size = 8
Else
Target.Cells.Font.Size = 10
End If
End Sub
kod hata veriyor.Nasıl düzeltebilirim.Teşekkürler