Dividing all numbers in a list by 1000

Hello all!

As the title suggests, I’m trying to divide all of the numbers in a list by 1000. So 45000, 30000, 35000 would be 45, 30, 35, & soforth.

I tried simply using a divide node, but it’s returning null values. I’m assuming it’s because I’m using a list of numbers, and not just one number.

Can anyone tell me what I’m doing wrong?

Thanks!

Try to add String.ToNumber before /.

3 Likes

That’s perfect! Thanks!

1 Like