Hot to split data?

ebiscaro

Registered User.
Local time
Today, 11:08
Joined
Apr 5, 2003
Messages
37
Hi,


In two different table, I got the TEXT data below to compare.
What I would like to do is split the text in 3 columns so I can then subtract the numerical value.


Is that feasable?

S6 32 41.996 S6 32 41.9962
S7 53 15.903 S7 53 15.9039
S7 54 09.694 S7 54 9.6948
S7 54 17.781 S7 54 17.7814
S6 33 26.453 S6 33 26.4533

Thank you
 
use combination of mid(),left(),Right() to detach and instr() to find [Space] character and val() to convert the results into a number.
 

Users who are viewing this thread

Back
Top Bottom