can we force a carriage return in a perspective Table cell ?
I recently was looking for a way to do this. The only way I could get it to work, from a MariaDB query source, was using this as a concat separator.
CHAR(10 using utf8)
thanks ! in python works with:
chr(10)
2 Likes