# Applying calculations and rounding

Number and date calculations performed in PDI do not apply the **Format**, **Length**, and **Precision** properties. For example, using the table below, A + B + B = `30.1` If you preview B, it will appear as `10.0`, so you would think `10.02 + 10.0 + 10.0` `= 30.02`. However, because B was never converted to a string for the calculation, `10.02 + 10.04 + 10.04` `= 30.1.`

| Field | Input   | **Format** | **Decimal** | **Group** | **Length** | **Precision** |
| ----- | ------- | ---------- | ----------- | --------- | ---------- | ------------- |
| A     | `10.02` | #.0        | .           | ,         | 5          | 1             |
| B     | `10.04` |            | .           | ,         | 5          | 1             |

If you want to truncate a string, use the [Strings cut](/pdia-data-integration/10.2-data-integration/pdi-transformation-steps-reference-overview/strings-cut.md) step.

If you want to round or truncate a number, use the following [Calculator](/pdia-data-integration/10.2-data-integration/pdi-transformation-steps-reference-overview/calculator.md) step features:

* Round function
* Floor and Ceil functions

Alternatively, you can convert the date or number to a string in the [Select Values](/pdia-data-integration/10.2-data-integration/pdi-transformation-steps-reference-overview/select-values.md) step, which applies the formatting specified in the metadata.


---

# 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://docs.pentaho.com/pdia-data-integration/10.2-data-integration/data-integration-perspective-in-the-pdi-client/advanced-topics-pdi-perspective/understanding-pdi-data-types-and-field-metadata/using-the-fields-table-properties/applying-calculations-and-rounding.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.
