Skip to main content

SetScopeType

Sets the scope type for the conditional formatting rule.

Syntax

expression.SetScopeType(ScopeType);

expression - A variable that represents a ApiFormatCondition class.

Parameters

NameRequired/OptionalData typeDefaultDescription
ScopeTypeRequiredXlPivotConditionScopeThe scope type: "xlSelectionScope", "xlDataFieldScope", or "xlFieldsScope".

Returns

This method doesn't return any data.

Example

Define which portion of a table a formatting rule should apply to in a spreadsheet.

// How do I limit a conditional formatting rule to only certain columns or data fields in a spreadsheet?

// Narrow or expand the reach of a highlight rule across table sections in a spreadsheet.

let worksheet = Api.GetActiveSheet();

worksheet.GetRange("A1").SetValue("Sales Data");
worksheet.GetRange("A2").SetValue(100);
worksheet.GetRange("A3").SetValue(250);
worksheet.GetRange("A4").SetValue(150);
worksheet.GetRange("A5").SetValue(300);
worksheet.GetRange("A6").SetValue(75);

let dataRange = worksheet.GetRange("A2:A6");

let formatConditions = dataRange.GetFormatConditions();

let condition1 = formatConditions.Add("xlCellValue", "xlGreater", "200");
condition1.SetFillColor(Api.CreateColorFromRGB(255, 0, 0));

worksheet.GetRange("C1").SetValue("Original scope:");
worksheet.GetRange("C2").SetValue(condition1.GetScopeType());

condition1.SetScopeType("xlDataFieldScope");

worksheet.GetRange("C4").SetValue("New scope:");
worksheet.GetRange("C5").SetValue(condition1.GetScopeType());