Rounding numbers after ","

I’m making a tax calculation application and it should round me the number after “,”, it should stay the same before the comma, like this 1.0252 should make 1.03 max 2 digits will appear after the comma

Have a look at round block from math section

This rounds everything up for me, it just needs to round 2 digits after , after and .

Use format a s decimal - places 2

image

1 Like

will i put the rounder component

If you use round for 1.0252 result will be 1 so simply use format as decimal

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.