For example, I have a char column
Column 1
Cordinate1:N23; Cordinate2:S45
Cordinate1:S78; Cordinate2:N85
Cordinate1:N67; Cordinate2:N90
Cordinate1:S33; Cordinate2:S74
Now I am only interested in the infonation for Cordinate2 North, so I would like to create a new column by using some formula to extract the Cordinate2 N data. The results should look like this:
Column 1 Column2
Cordinate1:N23; Cordinate2:S45 Do not care
Cordinate1:S78; Cordinate2:N85 N85
Cordinate1:N67; Cordinate2:N90 N90
Cordinate1:S33; Cordinate2:S74 Do not care
Thanks a lot!