---
title: "Data Exporter | Appendix | N3uron KB V1.22"
slug: "data-exporter-appendix"
description: "Data Exporter is a N3uron module designed to generate XML or CSV files containing raw or aggregated data. This data is collected from selected tag groups…"
updated: 2025-09-30T15:55:33Z
published: 2025-12-23T11:38:20Z
canonical: "docs.n3uron.com/data-exporter-appendix"
---

> ## Documentation Index
> Fetch the complete documentation index at: https://docs.n3uron.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Appendix

## XML Compact File Example

```markup
<Data Name=”Country.Plant.BLK001” Start=”2018-03-12T10:00:00” End=”2018-03-12T10:01:00”>
 <Tag Name=”Inv01/DCVoltage” Avg=”567.01” Good=”1.0” Count=”5”/>
 <Tag Name=”Inv01/DCCurrent” Avg=”110.62” Good=”1.0” Count=”7”/>
 <Tag Name=”Inv01/Frequency” Avg=”50.01” Good=”1.0” Count=”1”/>
</Data>
```

## XML Extended File Example

```markup
<Data Name=”Country.Plant.BLK001” Start=”2018-03-12T10:00:00” End=”2018-03-12T10:01:00”>
 <Tag Name=”Inv01/DCVoltage” Avg=”567.01” Good=”1.0” Count=”5”/>
 <Tag Name=”Inv01/DCCurrent” Avg=”110.62” Good=”1.0” Count=”7”/>
 <Tag Name=”Inv01/Frequency” Avg=”50.01” Good=”1.0” Count=”1”/>
</Data>
```

## CSV Compact File Example

```none
#Name=Country.Plant.BLK001
#Start=2018-03-12T10:00:00
#End=2018-03-12T10:01:00
Tag, Avg, Good, Count
Inv01/DCVoltage, 567.01, 1.0, 5
Inv01/DCCurrent, 110.62, 1.0, 7
Inv01/Frequency, 50.01, 1.0, 1
```

## CSV Extended File Example

```none
#Name=Country.Plant.BLK001
#Start=2018-03-12T10:00:00
#End=2018-03-12T10:01:00
Tag, Avg, Good, Count
/Country/Plant/BLK001/Inv01/DCVoltage, 567.01, 1.0, 5
/Country/Plant/BLK001/Inv01/DCCurrent, 110.62, 1.0, 7
/Country/Plant/BLK001/Inv01/Frequency, 50.01, 1.0, 1
```
