Here is my request for help, I would like the text in the column “description” to be divided as many times as there are commas.
For example if in the description column it says: “bed, table”.
One column will receive the word “bed” and another column the word “table”.
I searched this forum for solutions to my problem and I found this which is quite close to the solution I am looking for:
Hello, yes I have seen your solution, but I do not know why it does not work, I have adapted to my columns:
SEARCH(
“,”,
RIGHT(
{Description},
LEN({Description})-{produit 1}
)
)+{produit 1}
I’m sorry if I don’t understand your solution there’s definitely something I’m doing wrong, or I don’t understand your approach and way of doing this formula…
I can see that you’re new to using formulae. What’s going wrong here is that you need to create a “First Comma Pos” column using a much more simple formula:
SEARCH(
",",
{Description}
)
Then you need to create a column called “Second Comma Pos” like so
Increment this by creating new columns and replacing each new “Pos” (position) in the formula for as many strings as you’d like to detect. These columns are just getting the positions of each comma.
The next columns you create will isolate the strings by using those positions.
Your first string formula will be very simple:
LEFT(
{Text},
{First Comma POS}-1
)
Then you need to use this more complex formula for further strings. This would be the third string:
And naturally you need to change “Second” and “Third” just up or down depending on which string you need. Create as many columns as you like and change these values to get the right string.
I should stress though that if you don’t have a fundamental understanding of how formulae work, you’re likely to consistently struggle. It would probably be wise to reach out to an expert for help. I’m available and monday.com can easily point you in the direction of many competent partners.
Like you can see, in red I have words before comma and after comma, but nothing is write on my second column…
In green, There are 3 word, but in my third column le word is not completed…
I understand and it’s near perfect, but for the third and Fourth column I’ve got a problem. Like you can see , in the Third column the word is not complete and the other part is in the fourth column. And when I’ve got this problem le fourth word is not complete also.