Yuvarlak ile gösterdiğim kutuya virgüllü bir rakam yazdığımda mm çevirmesini istiyorum yuvarlanmış haline böyle birşey mümkün mü acaba ?
https://imgyukle.com/i/oGa3WG
https://imgyukle.com/i/oGa3WG
DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, [A1:A100]) Is Nothing Then Exit Sub
If Selection.Count > 1 Then Exit Sub
If IsNumeric(Target) = False Then Exit Sub
If Int(Target) <> Target Then
Application.EnableEvents = False
Target = WorksheetFunction.Round(Target / 1000000, 2)
Application.EnableEvents = True
End If
End Sub
0,00..