Replace dot(.) with blank.
For ur reference
Now u can use split and stotre the values in variables.
Regards,
Ankesh
For ur reference
Code:
num="123 343 234."
num=Replace(num,".","") ' this will give u the string 123 343 234
Regards,
Ankesh