compiler error in calling Exell functions

  • Thread starter Thread starter Mehrdad hakimzadeh
  • Start date Start date
M

Mehrdad hakimzadeh

When I want to use ROW(), COLUMN()and ADDRESS() functions
in an Exell macro, I receive the message "Compiler error:
Sub or function not defined.".

Thanks
 
Hi
if you're using the worksheetfunction object these worksheet functions
are not supported in VBA. Reason: There're VBA equivalents.

e.g.
with activecell
msgbox .row
msgbox .column
msgbox .address
end with
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Compile error in hidden module 3
error in exel 1
Command Butons in Exel 2004 2
How do I import data from Calendar into Excel 1
Pyramid 1
Microsoft Excell 3
On Key press 2
Access ConcatRelated() Function Not Working 0

Back
Top