Excel sheet analyzer/generator

T

Tomasz Klim

Hi

I need a tool, that can analyse existing Excel Sheet, and generate
Visual Basic 6.0 / VBA code, which in turn generate this sheet from scratch
(add new blank sheet, apply all changes).

I'm interested in column/row sizes, cell colors, borders, cell values,
and formulas. I don't need support for VBA.

Does anybody know such tool?
 
J

Jim Cone

Sub NoToolsRequired()
ActiveSheet.Copy
End Sub
--
Jim Cone
San Francisco, USA
http://www.realezsites.com/bus/primitivesoftware


"Tomasz Klim"
<[email protected]>
wrote in message
Hi
I need a tool, that can analyse existing Excel Sheet, and generate
Visual Basic 6.0 / VBA code, which in turn generate this sheet from scratch
(add new blank sheet, apply all changes).
I'm interested in column/row sizes, cell colors, borders, cell values,
and formulas. I don't need support for VBA.
Does anybody know such tool?
 
T

Tomasz Klim

Unfortunately, this is not enough, because I have a very big and complicated
sheet with some tables, and want to scan these tables, generate their
code-version, and then rewrite it to make possible generating similar
tables, but based on user's input.
 
J

Jim Cone

That task description sounds like what some of us do for a living.
Remove xxx from my email address.
--
Jim Cone
San Francisco, USA
(e-mail address removed)
http://www.realezsites.com/bus/primitivesoftware


"Tomasz Klim"
<[email protected]>
wrote in message
Unfortunately, this is not enough, because I have a very big and complicated
sheet with some tables, and want to scan these tables, generate their
code-version, and then rewrite it to make possible generating similar
tables, but based on user's input.


Uzytkownik "Jim Cone"
 

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

Top