> ## Documentation Index
> Fetch the complete documentation index at: https://docs.superoffice.com/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);
```


## Related topics

- [NSStatisticsDataSet](/en/automation/crmscript/reference/CRMScript.NetServer.NSStatisticsDataSet.md)
- [SuperOffice.WebApi.Data.StatisticsDataValue](/en/api/reference/webapi/SuperOffice.WebApi.Data.StatisticsDataValue.md)
- [Get Statistics](/en/api/reference/restful/agent/customerservice_agent/get-statistics.md)
- [SuperOffice.WebApi.Data.StatisticsDataSet](/en/api/reference/webapi/SuperOffice.WebApi.Data.StatisticsDataSet.md)
- [Calculate Mailing Statistics](/en/api/reference/restful/agent/marketing_agent/calculate-mailing-statistics.md)
- [View chat statistics](/en/chat/learn/statistics.md)
