Skip to content

Files

Latest commit

author
Docs Allowlist Management
Mar 29, 2024
128e4d7 · Mar 29, 2024

History

History
41 lines (26 loc) · 1.02 KB

Excel.ChartGroup.SplitValue.md

File metadata and controls

41 lines (26 loc) · 1.02 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
ChartGroup.SplitValue property (Excel)
vbaxl10.chm568098
vbaxl10.chm568098
Excel.ChartGroup.SplitValue
a7cab670-1510-5334-f11b-12dc8cc13570
04/20/2019
medium

ChartGroup.SplitValue property (Excel)

Returns or sets the threshold value separating the two sections of either a Pie of Pie chart or a Bar of Pie chart. Read/write Variant.

Syntax

expression.SplitValue

expression A variable that represents a ChartGroup object.

Example

This example must be run on either a Pie of Pie chart or a Bar of Pie chart. The example splits the two sections of the chart by value, combining all values under 10 in the primary pie and displaying them in the secondary section.

With Worksheets(1).ChartObjects(1).Chart.ChartGroups(1) 
 .SplitType = xlSplitByValue 
 .SplitValue = 10 
 .VaryByCategories = True 
End With

[!includeSupport and feedback]