Forum Discussion
Compile error: Method or data member not found
- Jun 28, 2018
You had the code in a code module and a worksheet code module. If the code is in the worksheet module you can use syntax like:
Me.ListBox2.Value = ""
If you use a code module you have to specify the worksheet:
Sheets("Font Book").ListBox2.Value = ""
It looks like your code was duplicative. I removed the code module stuff and now it works fine (See attached)
You had the code in a code module and a worksheet code module. If the code is in the worksheet module you can use syntax like:
Me.ListBox2.Value = ""
If you use a code module you have to specify the worksheet:
Sheets("Font Book").ListBox2.Value = ""
It looks like your code was duplicative. I removed the code module stuff and now it works fine (See attached)
- Mconnolly31Jun 15, 2019Copper ContributorHi is this maybe the same error I am seeing here please?
https://techcommunity.microsoft.com/t5/Excel/Compile-Error-Method-or-data-member-not-found/m-p/694161 - nestatessApr 26, 2019Copper Contributor
Am I understanding correctly that this error means that the sheet has not been called in prior code? I am attempting to plot a chart and am calling from a sheet called Basic Duck and am having an error pop up that says the method is not found. I previously had a range error but that has been corrected. I have not previously named the sheet in the code though if that needs to happen.
- kevin whitesideJun 29, 2018Copper Contributor
Excellent - thank you!
- Matt MickleJun 29, 2018Bronze Contributor
You're quite welcome. Glad you have it working. Please feel free to post back to the community in the future if you have any other inquiries.