This question already has an answer here:
How do I line break in a cell in csv correctly, I tried this:
"\"$value
\"";
This break the data in the cell but gives me an additional
"
Sign at the second data on the cell
I tried various things but could not break it and remove the
"
sign.
Does anyone have a solution
EDIT:
Current output in the csv cell is something like this:
value1, value2, value3....
What I want is something like this
value1,
value2,
value3
</div>
You have to add 1 more double qoute
"\"".$value."
".$value2."\""