# How do I transform numerical values?

**URL:** https://community.weweb.io/t/how-do-i-transform-numerical-values/2591
**Category:** How do I?
**Created:** [May 4, 2023, 4:32pm UTC](https://community.weweb.io/t/how-do-i-transform-numerical-values/2591 "2023-05-04T16:32:59Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![brandon](https://sea2.discourse-cdn.com/flex016/user_avatar/community.weweb.io/brandon/32/2804_2.png) [@brandon](https://community.weweb.io/u/brandon)
#### Post date: [May 4, 2023, 4:32pm UTC](https://community.weweb.io/t/how-do-i-transform-numerical-values/2591/1 "2023-05-04T16:32:59Z")

</div>

Long-time Bubble user, BRAND NEW WeWeb user here 🙂

**TL;DR - I need to take a decimal value such as “0.10674763847” and format it as “10%”. How can I do this, especially if the numerical value is part of a concatenation string?** Seem example below.

 ![image](https://us1.discourse-cdn.com/flex016/uploads/weweb/original/2X/d/d2330afe697f32235d594a05de12bd1ac924ce43.png)

I don’t believe there is an automatic way (yet) on WeWeb to convert numbers to currency, percentages, etc like there is Bubble so I know that for the “%” character that will be a simple concatenation after the numerical value. But is there a way to manually adjust the decimal placement? Or to shorten long numerical formats to a more readable format?

I suppose I could just go through Xano and reformat this on that end (maybe that will be the better play anyway to save on resources with the page load) but I was just curious for future scenarios if and how this is possible.

Thanks everyone!

---

<div class="post-metadata">

### Author: ![mauromequelussi](https://sea2.discourse-cdn.com/flex016/user_avatar/community.weweb.io/mauromequelussi/32/10223_2.png) [@mauromequelussi](https://community.weweb.io/u/mauromequelussi)
#### Post date: [May 4, 2023, 4:43pm UTC](https://community.weweb.io/t/how-do-i-transform-numerical-values/2591/2 "2023-05-04T16:43:19Z")

</div>

![Captura de Tela 2023-05-04 às 13.42.42](https://us1.discourse-cdn.com/flex016/uploads/weweb/original/2X/7/783f6918328c661eb3226ec7fea4ef104be13b48.png)

concatenate(“This is “,round(toNumber(“0.10228”)\*100,2),”%”)

---

<div class="post-metadata">

### Author: ![brandon](https://sea2.discourse-cdn.com/flex016/user_avatar/community.weweb.io/brandon/32/2804_2.png) [@brandon](https://community.weweb.io/u/brandon)
#### Post date: [May 4, 2023, 4:58pm UTC](https://community.weweb.io/t/how-do-i-transform-numerical-values/2591/3 "2023-05-04T16:58:59Z")

</div>

My man! Looks like I just need to sharpen my Excel skills for this platform 😂

Thank you so much for the screenshot!
