aidez-moi à msgbox vba excel

dodo222

New Member
Joined
Dec 15, 2022
Messages
8
Office Version
  1. 2016
Platform
  1. Windows
hello
Je veux
En cliquant sur les cellules de (d4:d7) et en remplissant les cellules avec des conditions de 0 à 20
Et quand je remplis plus de 20, je reçois un msgbox d'erreur indiquant que la note autorisée ne dépasse pas 20
Et en appuyant sur ok, il m'affiche 00 dans la cellule active
et merci
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
Capture.PNG
 
Upvote 0
Peut-être ceci dans le module de feuille:
VBA Code:
Private Sub Worksheet_Change(ByVal Target As Range)
    If Not Intersect(Target, Range("D4:D7")) Is Nothing Then
        If Target.Value > 20 Then
            MsgBox "Aucune valeur supérieure à 20"
            Target.Value = 0
        End If
    End If
End Sub
 
Upvote 0
Solution
How can I do this code in the workbook and not in one sheet
 
Upvote 0
Pour ce faire au niveau du classeur, voir ci-dessous, le code doit aller dans le module ThisWorkbook :
VBA Code:
Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
    If Not Intersect(Target, Range("D4:D7")) Is Nothing Then
        If Target.Value > 20 Then
            MsgBox "Aucune valeur supérieure à 20"
            Target.Value = 0
        End If
    End If
End Sub
 
Upvote 0
Pour ce faire au niveau du classeur, voir ci-dessous, le code doit aller dans le module ThisWorkbook :
VBA Code:
Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
    If Not Intersect(Target, Range("D4:D7")) Is Nothing Then
        If Target.Value > 20 Then
            MsgBox "Aucune valeur supérieure à 20"
            Target.Value = 0
        End If
    End If
End Sub
thenk you sir
 
Upvote 0

Forum statistics

Threads
1,215,133
Messages
6,123,233
Members
449,092
Latest member
SCleaveland

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