Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to find the code?

Status
Not open for further replies.

Cooperdam

MIS
Oct 7, 2009
65
US
I am looking at an Excel spreadsheet that I have to web enable - but I don't see any source or codes. How does this spreadsheet get the data etc.

Where do I find this out?
 
That is not much information to work with.

How do you know that there is any code in the first place?

Have to actually looked in the VBE (Visual Basic Editor) for any code? Because, if there IS code, that is where you see it.

Gerry
 
How does this spreadsheet get the data
Perhaps a QueryTable ?

Hope This Helps, PH.
FAQ219-2884
FAQ181-2886
 


Perhaps a QueryTable ?

To determine if there are any...
Code:
dim ws as worksheet, qt as querytable
for each ws in worksheets
  for each qt in ws.querytables
    debug.print ws.name, qt.name, qt.resultrange.address, qt.connection
  next
next

Skip,

[glasses]Just traded in my old subtlety...
for a NUANCE![tongue]
 
Thank you it turns out that the app is written in Crystal reports and it creates the Excel.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top