Sub verzenden()
'
' verzenden Macro
'
'
ActiveSheet.Unprotect
Range("B6:C19").Locked = True
Selection.FormulaHidden = False
Range("C1:C4").Copy
Application.CutCopyMode = False
Selection.Copy
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Range("B6:C6").Application.CutCopyMode = False
ActiveSheet.Protect DrawingObjects:=False, Contents:=True, Scenarios:= _
False, AllowFormattingCells:=True, AllowFormattingColumns:=True, _
AllowFormattingRows:=True, AllowInsertingColumns:=True, AllowInsertingRows _
:=True, AllowInsertingHyperlinks:=True, AllowDeletingColumns:=True, _
AllowDeletingRows:=True, AllowSorting:=True, AllowFiltering:=True, _
AllowUsingPivotTables:=True
Range("B5:C5").Application.CutCopyMode = False
Selection.Copy
Application.Dialogs(xlDialogSendMail).Show
ActiveSheet.Unprotect
Selection.Locked = False
Selection.FormulaHidden = False
Range("C1:C4").Select
ActiveCell.FormulaR1C1 = "=NOW()"
Range("B5:C5").Select
ActiveCell.FormulaR1C1 = Range("b5") + 1
Range("B6:C18").ClearContents
ActiveSheet.Protect DrawingObjects:=False, Contents:=True, Scenarios:= _
False, AllowFormattingCells:=True, AllowFormattingColumns:=True, _
AllowFormattingRows:=True, AllowInsertingColumns:=True, AllowInsertingRows _
:=True, AllowInsertingHyperlinks:=True, AllowDeletingColumns:=True, _
AllowDeletingRows:=True, AllowSorting:=True, AllowFiltering:=True, _
AllowUsingPivotTables:=True
Range("B6:C6").Select
ActiveWorkbook.Save
End Sub