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

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
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,213,546
Messages
6,114,256
Members
448,557
Latest member
richa mishra

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