# Invalid Closing Quote

{% hint style="info" %}
The error *Invalid Closing Quote: found non trimable byte after quote at line x* indicates that some quotes in the CSV feed aren't properly escaped.
{% endhint %}

Quotation marks in CSV files act as text qualifiers, wrapping text to keep it as one value instead of separating it into distinct values. This is crucial when importing CSV data into spreadsheet programs or databases, as it helps distinguish between commas that are delimiters and those that are part of the text.

**Correct:**

Quotes are properly escaped using double quotes ("") when included in text.

```csv
SKU,Product Name,RRP,Quantity
CLOTH001,"Men's ""Classic"" White T-Shirt",19.99,50
```

**Incorrect:**

```csv
SKU,Product Name,RRP,Quantity
CLOTH001,"Men's "Classic" White T-Shirt",19.99,50
```

```csv
SKU,Product Name,RRP,Quantity
CLOTH001,"Men's \"Classic\" White T-Shirt",19.99,50
```


---

# 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://help.stockeo.solvenium.com/troubleshooting/invalid-closing-quote.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.
