'How to split text values by a delimiter?

I need to analyze a database. I want to merge all cells I need with each other with a delimiter @. Now, I want to separate the string value in another sheet by the @ delimiter (see the screenshot). It needs to be done via a formula.

Screenshot of the worksheet



Solution 1:[1]

If I understand you correctly, the Split function should do what you want. e.g.:

=Split(A1, "@")

Example of Split used to split text by delimiter

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Charles-Alexandre Roy