Volume Weight

Length

prop("Size")
	.split("*")
	.at(0)
	.toNumber()

Width

prop("Size")
	.split("*")
	.at(1)
	.toNumber()

Height

prop("Size")
	.split("*")
	.at(2)
	.toNumber()

Volume Weight (from L/W/H)

prop("Length") 
* prop("Width") 
* prop("Height") 
/ 5000

Volume Weight

prop("Size").split("*").at(0).toNumber()
* prop("Size").split("*").at(1).toNumber()
* prop("Size").split("*").at(2).toNumber()
/ 5000

<aside> <img src="https://s3-us-west-2.amazonaws.com/secure.notion-static.com/1649d2f9-1b45-478a-86b4-341fbe27e06f/benny.png" alt="https://s3-us-west-2.amazonaws.com/secure.notion-static.com/1649d2f9-1b45-478a-86b4-341fbe27e06f/benny.png" width="40px" /> By BenLatest • Was this helpful? Please consider buying me a coffee. Cheers!

</aside>