Dear all,
i need some help here. currently i have 1 table with multiple field.
1 of the field name PackSize contain data like ;;5000;ml;; or ;;;;60;Tablet etc.
So, i want to ask expert out there,how to grab the value inside PackSize into my other field such as field Vol,Volunit,Vol Dnm,VolDnmUnit, Package,Package Unit.
here some example :
Let say ;;5000;ml;;
then the data should be like this :
Packsize | Vol | Volunit | VolDnm | VolDnmUnit | Package | PackageUnit
;;5000;ml;;| <null> | <null> | 5000 | ml | <null> | <null>
let say ;;;;60;Tablet
Packsize | Vol | Volunit | VolDnm | VolDnmUnit | Package | PackageUnit
;;;;60;Tablet | <null> | <null> | <null> | <null> | 60 | Tablet
i need some help here. currently i have 1 table with multiple field.
1 of the field name PackSize contain data like ;;5000;ml;; or ;;;;60;Tablet etc.
So, i want to ask expert out there,how to grab the value inside PackSize into my other field such as field Vol,Volunit,Vol Dnm,VolDnmUnit, Package,Package Unit.
here some example :
Let say ;;5000;ml;;
then the data should be like this :
Packsize | Vol | Volunit | VolDnm | VolDnmUnit | Package | PackageUnit
;;5000;ml;;| <null> | <null> | 5000 | ml | <null> | <null>
let say ;;;;60;Tablet
Packsize | Vol | Volunit | VolDnm | VolDnmUnit | Package | PackageUnit
;;;;60;Tablet | <null> | <null> | <null> | <null> | 60 | Tablet
Comment