EquationType Property

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a vba sub that has the following statement:

Dim iEquationType As EquationType

What is the EquationType property? I can't seem to find a description of
what is used for anywhere. Please help.

Clint
 
It is probably defined in some DLL or typelib file that you do
not have (or that is not referenced). Your best bet would be to
contact the original author of the workbook for more information.


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
 
It appears to me as if you have a User Defined Type. I am guessing that this
is some code that you did not write yourself. Search the project for the
phrase "End Type" and you should find where this is declared.

Here is and example of a UDT from VBA help.

Any data type you define using the Type statement. User-defined data types
can contain one or more elements of a data type, an array, or a previously
defined user-defined type. For example:

Type MyType
MyName As String ' String variable stores a name.
MyBirthDate As Date ' Date variable stores a birthdate.
MySex As Integer ' Integer variable stores sex (0 for
End Type ' female, 1 for male).

HTH
 

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

Back
Top