Hi there
I've to manage the data into this and it has blank space in between:
0297144600-4799 0297485500-5599
0297144600-0297144799 0297485500-5599
0297144600-0297144799 0297485500-0297485599
I want to normalise the first/2nd row like the last row which means
0297144600-4799 >> 0297144600-0297144799
The challenge is that it can be on this format: 0297144600-4799 or already normalised and these entries can be more than 2 series for instance:
0297144600-4799 0297485500-5599 0297486500-6599
But always seperating by blank space (theoritically it can be replaced with '|' if you want). I do have a split method to do is but now how to combining this.
Try to avoid the cursor if it's possible.
Thanks