> For the complete documentation index, see [llms.txt](https://docs.zerowork.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.zerowork.io/using-zerowork/using-building-blocks/number-operations/example-standardize-different-formats.md).

# Example: Standardize different formats

Imagine your TaskBots saves number of followers to your table. However, the platform of your choice displays the number of followers in a format like "7k" (which stands for 7000). And this can lead to problems if, for example, you want to use that number for numeric comparisons to qualify only those leads that have a certain amount of followers.

To solve this problem, follow the steps below.

* **Step 1**: Use [Format Data](/using-zerowork/using-building-blocks/format-data.md) with action [Remove Words](/using-zerowork/using-building-blocks/format-data/remove-words.md) to remove "k".

<figure><img src="/files/Jpo9vJaeDOQM7SoR3RrA" alt=""><figcaption></figcaption></figure>

* **Step 2**: Use *Number Operations* building block with action *Multiply* to multiply by 1000.

<figure><img src="/files/adDXOAVzfCCazny3EgFe" alt=""><figcaption></figcaption></figure>

### Video Tutorial

{% embed url="<https://youtu.be/iqsvzCPrZT0?si=6xo72Q11lWz0ts7m>" %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.zerowork.io/using-zerowork/using-building-blocks/number-operations/example-standardize-different-formats.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
