Skip to content

Files

Latest commit

 

History

History
55 lines (34 loc) · 1.15 KB

Excel.ControlFormat.Min.md

File metadata and controls

55 lines (34 loc) · 1.15 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
ControlFormat.Min property (Excel)
vbaxl10.chm630086
vbaxl10.chm630086
Excel.ControlFormat.Min
e5b70b54-5304-d013-2398-128609ddb7af
04/23/2019
medium

ControlFormat.Min property (Excel)

Returns or sets the minimum value of a scroll bar or spinner range. The scroll bar or spinner won't take on values less than this minimum value. Read/write Long.

Syntax

expression.Min

expression An expression that returns a ControlFormat object.

Return value

Long

Remarks

The value of the Min property must be less than the value of the Max property.

Example

This example creates a scroll bar and sets its linked cell, minimum, maximum, large change, and small change values.

Set sb = Worksheets(1).Shapes.AddFormControl(xlScrollBar, _ 
 Left:=10, Top:=10, Width:=10, Height:=200) 
With sb.ControlFormat 
 .LinkedCell = "D1" 
 .Max = 100 
 .Min = 0 
 .LargeChange = 10 
 .SmallChange = 2 
End With

[!includeSupport and feedback]