KlausW
Active Member
- Joined
- Sep 9, 2020
- Messages
- 453
- Office Version
- 2016
- Platform
- Windows
Hi
I have a little challenge.
I inserted the VBA code I found on the web into this workbook to make the MsgBox start when Excel starts.
But I for this error message.
VBA Error wrong number of arguments or invalid property assignment
But don't know how to fix the error.
Some who can help.
Any help will be appreciated
Best Regards
Klaus W
I have a little challenge.
I inserted the VBA code I found on the web into this workbook to make the MsgBox start when Excel starts.
But I for this error message.
VBA Error wrong number of arguments or invalid property assignment
But don't know how to fix the error.
Some who can help.
Any help will be appreciated
Best Regards
Klaus W
VBA Code:
Option Explicit
Private Sub Workbook_Open()
MsgBox "Autorun works!"
'your code here
End Sub