Hi @Tran,Long_Thai (AH RA_PV_CO) BIA-VN-H ,
Thank you for posting in this community.
I tested this in my Microsoft List lookup column and they are separated in each row.
Does this happen with other lists? You could try to clear browser cache or use a different browser to see if the same error occurs.
After my search, maybe you can use javascript and jquery. The code replaces the html coding of a semicolon with a html line break. It then copies the code and replaces the orginal code with it.
$(document).ready(function(){
$(".ms-vb:contains(';')").each(function(){
var htmlstr = $(this).html();
var htmlmod = htmlstr.replace(/; <A/g,"</br><A");
$(this).html(htmlmod);
});
});
Hope the information can help you. And if there have any unclear or misunderstanding, please feel free to post back and we’ll continue to help you all the time!
Your understanding and patience will be highly appreciated! Hope you have a good day and keep safe!
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.