Skip to content

Latest commit

 

History

History
44 lines (27 loc) · 859 Bytes

Excel.Range.ShowErrors.md

File metadata and controls

44 lines (27 loc) · 859 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Range.ShowErrors method (Excel)
vbaxl10.chm144197
vbaxl10.chm144197
Excel.Range.ShowErrors
02366ef0-b4dc-a10c-e186-d9392a8b656c
05/11/2019
medium

Range.ShowErrors method (Excel)

Draws tracer arrows through the precedents tree to the cell that's the source of the error, and returns the range that contains that cell.

Syntax

expression.ShowErrors

expression A variable that represents a Range object.

Return value

Variant

Example

This example displays a red tracer arrow if there's an error in the active cell on Sheet1.

Worksheets("Sheet1").Activate 
If IsError(ActiveCell.Value) Then 
 ActiveCell.ShowErrors 
End If

[!includeSupport and feedback]