Rounding an integer to it's hundredth place (like 124 to 100, 228 to 200, 348 to 300 etc.)

You could also use the mod node for what you’re trying to do I think (search for % if you’re using blueprints), which gives you the remainder of a division. So with integer divison 490/100 would be 4, but 490%100 would be 90 (the remainder), which gives you the percentage you want for your progress bar (510%100 gives you 10)

1 Like