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
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!
Hi
You can find an open solution as part of ONE Desktop - Cleanse and Convert Weight Unit and Value - which is similar use case and you might get some inspiration out of it or it may be even possible to customize the component to your specific needs.
Hope this could help.
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.