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! Request now
Hello all,
I have some data in Power BI I loaded in from SQL. In the SQL query I added line breaks to get the date, note modified by, subject, and Note on individual lines. (see picture) .
Power Query
In Power Query the data is showing correctly, but when I add the column "Most Current Entry" to the table visualization the line breaks are no longer working (see picture)
is there a way to fix this/ why is this happening?
thank you !!
Solved! Go to Solution.
Unfortunately, breaks from data source will not work in visuals, but there is a solution
if you replace breaks to any symbol like "|", and get the column value, for example, "string 1|string 2|string 3" you will be able to create a column that then replace "|" to breaks:
Column = SUBSTITUTE([ColumnWithBreaks];"|";UNICHAR(10))
do not hesitate to give a kudo to useful posts and mark solutions as solution
Unfortunately, breaks from data source will not work in visuals, but there is a solution
if you replace breaks to any symbol like "|", and get the column value, for example, "string 1|string 2|string 3" you will be able to create a column that then replace "|" to breaks:
Column = SUBSTITUTE([ColumnWithBreaks];"|";UNICHAR(10))
do not hesitate to give a kudo to useful posts and mark solutions as solution
oh great! I will try that right now and let you know how it works.
thank you for the input
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.