green triangles

methody

Well-known Member
Joined
Jun 17, 2002
Messages
857
Hello I have a workbook with lots of green triangles in cells. I don't really know why they are there. there is a range of different types of formulas in them. I want to get rid of them. however, I know how to get rid of them in my workbook but I want to get rid of them for other people to whom i might send the workbooks

can you help please
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
Hi methody,

If I understand you correctly these could occur because of several reasons.
I think it is to do with error checkingl like values stored as date etc.
If you click the Microsoft Office Button, then Excel Options and then click the Formulas and look at the Errror Checking options.
This will aplly to your SpreadSheet but it the recipient has theirs set to something different the error could or could not affect them.
What happens if you click the green triangle?

I hope this helps!
 
Upvote 0
methody,

Two ways you might achieve what you want.....

1. The green triangles will not be visible if you protect the worksheet.
So you can either, selectively, format cells as locked/unlocked or if you do not require any cells to be locked then format the whole sheet as unlocked BUT then protect the sheet!!!

2. You could use vba to disable formula error checking when the file opens and then enable it when the file closes.

In the ThisWorkbook module......
Code:
Private Sub Workbook_Open ()
Application.ErrorCheckingOptions.BackgroundChecking = False
End Sub

Private Sub Workbook_BeforeClose (Cancel As Boolean)
Application.ErrorCheckingOptions.BackgroundChecking = True
End Sub
Hope that helps.
 
Upvote 0

Forum statistics

Threads
1,196,273
Messages
6,014,382
Members
441,817
Latest member
biRosETa

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top