Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 47
Default Utility required - probably already invented

Hi all

I find myself regularly performing a couple of tasks which should not be too
hard to automate. The wheel has probably already been invented, and if
available for download I would appreciate a link. Otherwise it probably
only requires a few lines of VBA, and would appreciate that:

1) I want a macro the execution of which will create a new worksheet within
the active workbook and, in that (new) worksheet, list all instances of
#REF! error messages found anywhere in the workbook. I am really interested
in searching used cells, as I can use NameManager to identify errors in
names.

2) I want a macro the execution of which will create a new worksheet within
the active workbook and, in that (new) worksheet, list all worksheets in the
active workbook that contain cells that are dependent on the active
worksheet. (the purpose of this is to be run preparatory to deleting the
active worksheet in order to review potential problems that might arise from
the generation of #REF! error messages in dependent worksheets).

Thanks

--
Return email address is not as DEEP as it appears


  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 47
Default Utility required - probably already invented

Duh, now I feel sheepish. Already have FindLink installed but never looked
at it beyond finding links to external workbooks.

Thanks for that.

"Tushar Mehta" wrote in message
m...
See Bill Manville's FindLink utility
http://www.oaltd.co.uk/MVP/MVPPage.asp#BillManville

--
Regards,

Tushar Mehta
www.tushar-mehta.com
Excel, PowerPoint, and VBA add-ins, tutorials
Custom MS Office productivity solutions

In article , mind-the-
says...
Hi all

I find myself regularly performing a couple of tasks which should not be

too
hard to automate. The wheel has probably already been invented, and if
available for download I would appreciate a link. Otherwise it probably
only requires a few lines of VBA, and would appreciate that:

1) I want a macro the execution of which will create a new worksheet

within
the active workbook and, in that (new) worksheet, list all instances of
#REF! error messages found anywhere in the workbook. I am really

interested
in searching used cells, as I can use NameManager to identify errors in
names.

2) I want a macro the execution of which will create a new worksheet

within
the active workbook and, in that (new) worksheet, list all worksheets in

the
active workbook that contain cells that are dependent on the active
worksheet. (the purpose of this is to be run preparatory to deleting the
active worksheet in order to review potential problems that might arise

from
the generation of #REF! error messages in dependent worksheets).

Thanks




  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Utility required - probably already invented

I was under the impression it only found links to external workbooks - not
links between sheets in the same workbook. Does it work for links within a
workbook?

--
Regards
Tom Ogilvy

"Jack Sheet" wrote in message
...
Duh, now I feel sheepish. Already have FindLink installed but never

looked
at it beyond finding links to external workbooks.

Thanks for that.

"Tushar Mehta" wrote in message
m...
See Bill Manville's FindLink utility
http://www.oaltd.co.uk/MVP/MVPPage.asp#BillManville

--
Regards,

Tushar Mehta
www.tushar-mehta.com
Excel, PowerPoint, and VBA add-ins, tutorials
Custom MS Office productivity solutions

In article , mind-the-
says...
Hi all

I find myself regularly performing a couple of tasks which should not

be
too
hard to automate. The wheel has probably already been invented, and

if
available for download I would appreciate a link. Otherwise it

probably
only requires a few lines of VBA, and would appreciate that:

1) I want a macro the execution of which will create a new worksheet

within
the active workbook and, in that (new) worksheet, list all instances

of
#REF! error messages found anywhere in the workbook. I am really

interested
in searching used cells, as I can use NameManager to identify errors

in
names.

2) I want a macro the execution of which will create a new worksheet

within
the active workbook and, in that (new) worksheet, list all worksheets

in
the
active workbook that contain cells that are dependent on the active
worksheet. (the purpose of this is to be run preparatory to deleting

the
active worksheet in order to review potential problems that might

arise
from
the generation of #REF! error messages in dependent worksheets).

Thanks






  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,290
Default Utility required - probably already invented

Jack,

Well, I invented(?) something that might do part/all of what you want...

' Finds worksheet formulas on each sheet in the active workbook.
'Adds a new worksheet and lists all formulas found and their cell addresses,
' values, precedents and dependents.
' Formulas that have error values will also appear on the list.

The vba code is shown is this post...
http://makeashorterlink.com/?L5F24173B

Regards,
Jim Cone
San Francisco, USA


"Jack Sheet" wrote in message
...
Hi all
I find myself regularly performing a couple of tasks which should not be too
hard to automate. The wheel has probably already been invented, and if
available for download I would appreciate a link. Otherwise it probably
only requires a few lines of VBA, and would appreciate that:
1) I want a macro the execution of which will create a new worksheet within
the active workbook and, in that (new) worksheet, list all instances of
#REF! error messages found anywhere in the workbook. I am really interested
in searching used cells, as I can use NameManager to identify errors in
names.
2) I want a macro the execution of which will create a new worksheet within
the active workbook and, in that (new) worksheet, list all worksheets in the
active workbook that contain cells that are dependent on the active
worksheet. (the purpose of this is to be run preparatory to deleting the
active worksheet in order to review potential problems that might arise from
the generation of #REF! error messages in dependent worksheets).
Thanks
Return email address is not as DEEP as it appears




  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 47
Default Utility required - probably already invented

Hi

It won't do everything that I wanted in the OP, but it will find broken
links containing eg #REF

"Tom Ogilvy" wrote in message
...
I was under the impression it only found links to external workbooks - not
links between sheets in the same workbook. Does it work for links within

a
workbook?

--
Regards
Tom Ogilvy

"Jack Sheet" wrote in message
...
Duh, now I feel sheepish. Already have FindLink installed but never

looked
at it beyond finding links to external workbooks.

Thanks for that.

"Tushar Mehta" wrote in

message
m...
See Bill Manville's FindLink utility
http://www.oaltd.co.uk/MVP/MVPPage.asp#BillManville

--
Regards,

Tushar Mehta
www.tushar-mehta.com
Excel, PowerPoint, and VBA add-ins, tutorials
Custom MS Office productivity solutions

In article , mind-the-
says...
Hi all

I find myself regularly performing a couple of tasks which should

not
be
too
hard to automate. The wheel has probably already been invented, and

if
available for download I would appreciate a link. Otherwise it

probably
only requires a few lines of VBA, and would appreciate that:

1) I want a macro the execution of which will create a new worksheet

within
the active workbook and, in that (new) worksheet, list all instances

of
#REF! error messages found anywhere in the workbook. I am really

interested
in searching used cells, as I can use NameManager to identify errors

in
names.

2) I want a macro the execution of which will create a new worksheet

within
the active workbook and, in that (new) worksheet, list all

worksheets
in
the
active workbook that contain cells that are dependent on the active
worksheet. (the purpose of this is to be run preparatory to deleting

the
active worksheet in order to review potential problems that might

arise
from
the generation of #REF! error messages in dependent worksheets).

Thanks








  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Utility required - probably already invented

I guess because those could be external. Thanks.

--
Regards,
Tom Ogilvy

"Jack Sheet" wrote in message
...
Hi

It won't do everything that I wanted in the OP, but it will find broken
links containing eg #REF

"Tom Ogilvy" wrote in message
...
I was under the impression it only found links to external workbooks -

not
links between sheets in the same workbook. Does it work for links

within
a
workbook?

--
Regards
Tom Ogilvy

"Jack Sheet" wrote in message
...
Duh, now I feel sheepish. Already have FindLink installed but never

looked
at it beyond finding links to external workbooks.

Thanks for that.

"Tushar Mehta" wrote in

message
m...
See Bill Manville's FindLink utility
http://www.oaltd.co.uk/MVP/MVPPage.asp#BillManville

--
Regards,

Tushar Mehta
www.tushar-mehta.com
Excel, PowerPoint, and VBA add-ins, tutorials
Custom MS Office productivity solutions

In article , mind-the-
says...
Hi all

I find myself regularly performing a couple of tasks which should

not
be
too
hard to automate. The wheel has probably already been invented,

and
if
available for download I would appreciate a link. Otherwise it

probably
only requires a few lines of VBA, and would appreciate that:

1) I want a macro the execution of which will create a new

worksheet
within
the active workbook and, in that (new) worksheet, list all

instances
of
#REF! error messages found anywhere in the workbook. I am really
interested
in searching used cells, as I can use NameManager to identify

errors
in
names.

2) I want a macro the execution of which will create a new

worksheet
within
the active workbook and, in that (new) worksheet, list all

worksheets
in
the
active workbook that contain cells that are dependent on the

active
worksheet. (the purpose of this is to be run preparatory to

deleting
the
active worksheet in order to review potential problems that might

arise
from
the generation of #REF! error messages in dependent worksheets).

Thanks










Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
compare.xla utility wnfisba Excel Discussion (Misc queries) 1 September 7th 05 08:51 PM
Last Row Utility Dthmtlgod[_3_] Excel Programming 2 January 5th 05 02:13 PM
Chelmsford Utility DaveB Excel Discussion (Misc queries) 2 December 16th 04 08:51 PM
I invented way cool analysis tool in excel Mister Tree Excel Programming 1 April 3rd 04 02:43 PM
utility hurdler Excel Programming 1 October 24th 03 06:35 PM


All times are GMT +1. The time now is 04:10 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"