Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2
Default Hiding error indicators

I often have to display results from an excel file in powerpoint or on paper,
so I've adjusted the "Error Checking" tab under "Options" to remove the error
indicators for the most common errors ("Inconsistent Formula...", "Formula
Omits Cells...").

If I send the file to other people who haven't modified their "Error
Checking" tabs, those error indicators will show up again.

Is there anyway to hide those error indicators permanently, no matter who
opens up the file?

Thanks.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Hiding error indicators

Turn off EC when workbook opens............

Private Sub Workbook_Open()
Application.ErrorCheckingOptions.BackgroundCheckin g = False
End Sub

Turn back on if user switches workbooks.......................

Private Sub Workbook_Deactivate()
Application.ErrorCheckingOptions.BackgroundCheckin g = True
End Sub

Turn back off if user switches back to yours...............................

Private Sub Workbook_Activate()
Application.ErrorCheckingOptions.BackgroundCheckin g = False
End Sub

Turn back on when user closes yours........................

Private Sub Workbook_BeforeClose(Cancel As Boolean)
Application.ErrorCheckingOptions.BackgroundCheckin g = True
End Sub

All to be copied to Thisworkbook module.


Gord Dibben MS Excel MVP



On Thu, 10 Apr 2008 15:19:01 -0700, MrBlades
wrote:

I often have to display results from an excel file in powerpoint or on paper,
so I've adjusted the "Error Checking" tab under "Options" to remove the error
indicators for the most common errors ("Inconsistent Formula...", "Formula
Omits Cells...").

If I send the file to other people who haven't modified their "Error
Checking" tabs, those error indicators will show up again.

Is there anyway to hide those error indicators permanently, no matter who
opens up the file?

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
Hiding error message Mark Flynn Excel Worksheet Functions 3 September 21st 06 10:08 PM
Hiding Error in Cells!! slvtenn Excel Discussion (Misc queries) 4 March 6th 06 02:06 AM
comment indicator changing the color or hiding the indicators Giovanni Excel Discussion (Misc queries) 2 September 3rd 05 12:37 AM
hiding error message Shooter Excel Worksheet Functions 3 January 27th 05 04:06 AM
Hiding a formula error Kim Excel Worksheet Functions 2 December 1st 04 01:01 AM


All times are GMT +1. The time now is 02:26 AM.

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"