I need to standardize volume data in ml .
I have data in galons,liters and mililiters . Can anyone please help me in this .
Sample Volume Data
450ml
2L
5galon
2.8L
Thanks in advance
I need to standardize volume data in ml .
I have data in galons,liters and mililiters . Can anyone please help me in this .
Sample Volume Data
450ml
2L
5galon
2.8L
Thanks in advance
Best answer by Lisa Kovalskaia
Hi
case(units is "L",toInteger(src_volume_value)*1000,
units is "ml", toInteger(src_volume_value),
units is "Galons",toInteger(src_volume_value)*3785.41,
null)
Hope this helps - let us know if you have any other questions!
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.