# COUNT

### Description

Counts the number of entries on a *vector, grouped scalar,* or *grouped vector.*

### COUNT(Vector\<any>)

```java
COUNT(vector: Vector<any>): Scalar<Number>
```

Count the entries of the given Vector\<any>.

#### Parameters

<table><thead><tr><th width="172">Parameter</th><th>Description</th></tr></thead><tbody><tr><td>vector</td><td>A vector of type &#x3C;any></td></tr></tbody></table>

#### Returns

Returns how many elements are within the given vector as Scalar\<Number>

***

### COUNT(GroupedScalar\<any, any>)

```java
COUNT(group: GroupedScalar<any, any>): Scalar<Number>
```

Count the entries of the given GroupedScalar\<any, any>.

#### Parameters

<table><thead><tr><th width="172">Parameter</th><th>Description</th></tr></thead><tbody><tr><td>group</td><td>A GroupedScalar of type &#x3C;any, any></td></tr></tbody></table>

#### Returns

Returns how many elements are within the given group as Scalar\<Number>

***

### COUNT(GroupedVector\<any, any>)

```java
COUNT(group: GroupedVector<any, any>): Scalar<Number>
```

Count the entries of the given GroupedVector\<any, any>.

#### Parameters

<table><thead><tr><th width="172">Parameter</th><th>Description</th></tr></thead><tbody><tr><td>group</td><td>A GroupedVector of type &#x3C;any, any></td></tr></tbody></table>

#### Returns

Returns how many elements are within the given group as Scalar\<Number>

***

### Examples

Count the elements within the GridPowerConsumption time series.

```java
COUNT($GridPowerConsumption)
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://doc.moost.io/platform-manual/rules/rule-language/functions/count.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
