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