# Export-UcmCSVReport

{% hint style="info" %}
For a full overview, check [About UCM Reporting Cmdlets](https://docs.ucmadscientist.com/using-ucmpstools/cmdlet-reference/reporting-and-logging#about-ucm-reporting-cmdlets)
{% endhint %}

## Description

Grabs the data stored in the report object generated by [Complete-UcmReport](https://docs.ucmadscientist.com/using-ucmpstools/cmdlet-reference/reporting-and-logging/complete-ucmreport) and converts it to a CSV in the current folder with the filename "$Title - $StartDate.csv" You can change the path by editing $Global:CSVReportFilename just before calling this function

## Filenames

by default, the filename is based on the **Title** parameter specified in [Initialize-UcmReport](https://docs.ucmadscientist.com/using-ucmpstools/cmdlet-reference/reporting-and-logging/initialize-ucmreport) and the time the report was initialized.\
To change the filename, update the following variable before calling the function

```powershell
$Global:CSVReportFilename=".\$Title - $StartDate.csv"
```

## Example

```powershell
Export-UcmCsvReport
```

## Inputs

This function accepts no inputs

## Outputs

This function does not output anything to the pipeline
