Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Good afternoon, everyone,
I have in my sales table a column called "Description". In this column users place some observation about the sale. The issue is that they make line breaks. To visualize these observations in a table I need to remove those line breaks and for this I use the function:
Detalle = SUBSTITUTE('facturas todas'[Descripcion],UNICHAR(10),"- ")
Solved! Go to Solution.
There might be both carriage returns and line feeds in the column. Does this fix it?
Detalle = SUBSTITUTE(SUBSTITUTE('facturas todas'[Descripcion],UNICHAR(10),"- "),UNICHAR(13),"- ")
UNICHAR(13) is carriage return
Thank you very much, you solved it!
Big hug
There might be both carriage returns and line feeds in the column. Does this fix it?
Detalle = SUBSTITUTE(SUBSTITUTE('facturas todas'[Descripcion],UNICHAR(10),"- "),UNICHAR(13),"- ")
UNICHAR(13) is carriage return
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.