DB73
Board Regular
- Joined
- Jun 7, 2022
- Messages
- 111
- Office Version
- 365
- 2021
- 2019
- 2016
- 2010
- 2007
- Platform
- Windows
- Mobile
- Web
Hey Guys,
My question is as follow
i took a little VBE code here from the forum, but i want it twice
for Cell B11 and O11
but i need just another text
so i put this code twice, changed the cells but then it says that it has a double name
this is the code;
this works;
but this doesnt:
can/will someone help me so the 2 textboxes will work.
thanks in advance
My question is as follow
i took a little VBE code here from the forum, but i want it twice
for Cell B11 and O11
but i need just another text
so i put this code twice, changed the cells but then it says that it has a double name
this is the code;
VBA Code:
'reden onkosten
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, Range("B11")) Is Nothing Then Exit Sub
If Target <> "" Then
MsgBox "Gelieve bij **Order extra's** hier het ordernummer op te geven op welke de Km's gedeclareerd moet worden", vbOKOnly + vbInformation, "OPGELET !!"
End If
End Sub
this works;
VBA Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Dim form As CalendarForm
Dim d As Date
If Target.Address = "$B$16" Then
Set form = New CalendarForm
d = form.GetDate(SelectedDate:=Date)
If d > 0 Then Target.value = d
Range("D15").Select
End If
End Sub
'reden onkosten
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, Range("B11")) Is Nothing Then Exit Sub
If Target <> "" Then
MsgBox "Gelieve bij **Order extra's** hier het ordernummer op te geven op welke de Km's gedeclareerd moet worden", vbOKOnly + vbInformation, "OPGELET !!"
End If
End Sub
but this doesnt:
VBA Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Dim form As CalendarForm
Dim d As Date
If Target.Address = "$B$16" Then
Set form = New CalendarForm
d = form.GetDate(SelectedDate:=Date)
If d > 0 Then Target.value = d
Range("D15").Select
End If
End Sub
'Order extra's
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, Range("B11")) Is Nothing Then Exit Sub
If Target <> "" Then
MsgBox "Gelieve bij **Order extra's** hier het ordernummer op te geven op welke de Km's gedeclareerd moet worden", vbOKOnly + vbInformation, "OPGELET !!"
End If
End Sub
'Onkosten
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, Range("O11")) Is Nothing Then Exit Sub
If Target <> "" Then
MsgBox "Gelieve bij **Reden onkosten** de reden aan te geven van de gemaakte onkosten", vbOKOnly + vbInformation, "OPGELET !!"
End If
End Sub
can/will someone help me so the 2 textboxes will work.
thanks in advance