Hello guys, new member and first post, come to you with a question. As you can see from the code below, we are executing a macro that then executes one of two possible macros after determining if today's date matches the date in another location. I have posted the errors as well as the highlighted bit of code it doesn't like. I get the feeling this is about syntax but I'm not sure.
"Compile error: Wrong number of arguments or invalid property assignment"
Highlights Then portion of code
![]()
Sub Print_3_New_Deals_Start() ' ' Print_New_Deals_Start ' ' Sheets("PNL Explained (Rpt)").Select Today = Date If Today <> Sheets("New Deals").Range("H12") Then [Application.Run("Print_3_New_Deals_None"] [Else [Application.Run("Print_3_New_Deals_Present"] ] End Sub
Bookmarks