# Charge tax

Stockeo allows you to decide whether to charge tax on a product based on data from the product feed.

In the Data Mapping section, open the Add field dropdown, and select "Charge tax". Then specify the field in your product feed that determines whether a product is taxable.

<figure><img src="/files/k1ctbjMsxtSc2mxr0ALu" alt=""><figcaption><p>Stockeo - <em>Charge tax</em> field</p></figcaption></figure>

The "Charge tax" field accepts the below values.

Positive values:

* yes, Yes, YES
* true, True, TRUE
* 1

Negative values:

* no, No, NO
* false, False, FALSE
* 0

You can use a Liquid expression to convert unsupported values, or to specify a fixed value.

For example, when your feed contains a VAT\_Taxable field with one of the two values *Y*, and *N*:

```
{%- case VAT_Taxable -%}
{%- when "Y" -%} yes
{%- when "N" -%} no
{%- else -%} yes
{%- endcase -%}
```

To specify a fixed value:

```
{{ "yes" }}
```


---

# 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/data-mapping/charge-tax.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.
