Is it possible to make a new column, for example named "Test" and store the first part of the column "Name" split by -
?
See below how it should look like:
Answer
Yes you can.
Use the Field calculator with the following expression:
left( "Name", strpos( "Name" ,'-'))
The strpos() function will return the index position of the first '-' character and the left() function "trims" the string before that position.
No comments:
Post a Comment