> ## Documentation Index
> Fetch the complete documentation index at: https://superofficeas-bugfix-ty-screen-designer-paradox.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# NSStatisticsDataValue

> Contains a single data value in a data set, used by CS for Status Screen reports.

Contains a single data value in a data set, used by CS for Status Screen reports.

## Constructors

### NSStatisticsDataValue()

```crmscript theme={null}
NSStatisticsDataValue
```

Initializes a new instance of the NSStatisticsDataValue class.

## Methods

## GetDescription()

```crmscript theme={null}
String GetDescription()
```

**Returns:** [CRMScript.Global.String](CRMScript.Global.String) - Tooltip for data value.

**Example:**

```crmscript theme={null}
NSStatisticsDataValue thing;
String description = thing.GetDescription();
```

## GetLabel()

```crmscript theme={null}
String GetLabel()
```

**Returns:** [CRMScript.Global.String](CRMScript.Global.String) - The label for the data value.

**Example:**

```crmscript theme={null}
NSStatisticsDataValue thing;
String label = thing.GetLabel();
```

## GetValue()

```crmscript theme={null}
Float GetValue()
```

**Returns:** [CRMScript.Global.Float](CRMScript.Global.Float) - The value for the data value.

**Example:**

```crmscript theme={null}
NSStatisticsDataValue thing;
Float value = thing.GetValue();
```

## SetDescription(String)

```crmscript theme={null}
Void SetDescription(String description)
```

**Returns:** [CRMScript.Global.Void](CRMScript.Global.Void)

**Example:**

```crmscript theme={null}
NSStatisticsDataValue thing;
String description;
thing.SetDescription(description);
```

## SetLabel(String)

```crmscript theme={null}
Void SetLabel(String label)
```

**Returns:** [CRMScript.Global.Void](CRMScript.Global.Void)

**Example:**

```crmscript theme={null}
NSStatisticsDataValue thing;
String label;
thing.SetLabel(label);
```

## SetValue(Float)

```crmscript theme={null}
Void SetValue(Float value)
```

**Returns:** [CRMScript.Global.Void](CRMScript.Global.Void)

**Example:**

```crmscript theme={null}
NSStatisticsDataValue thing;
Float value;
thing.SetValue(value);
```
