• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Run-time error 438 Object doesn't support this property or method

TheBoss_U2

New Member
Hello everyone,

I have a worksheet to show the progress of activities on field, but each time I select the button I receive the message "Run-time error 438 Object doesn't support this porperty or method". When I run the debugger it locates at "Call ThisWorkbook.CreateStatusOverTime"

Private Sub CommandButton1_Click()
Call ThisWorkbook.CreateStatusOverTime
End Sub

Can somebody help me to find a solution. I think is simple but I'm not an VBA expert.
 
Do you actually have a routine (Sub or Function) in the ThisWorkbook module that is called CreateStatusOverTime?
 
Yes, inside ThisWorkbook, first line is

Sub CreateStatusOverTime()

'Attached file
 

Attachments

  • Example-maacro.xlsm
    75.9 KB · Views: 2

Hi !

Use step by step debugging mode (via F8 key) to find out
where exactly error occurs …
 
Back
Top