Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I use this
=Concat (Distinct Item_Code)
and get results in a string of text. I require a delimiter to separate the results
i get this
item1item2ite
m3
i require
item1
item2
item3
Thank you in adnvance
Try this:
=Concat(Distinct Item_Code, Chr(10))
Sunny T strikes again.
Thank you so much Sunny.
or you can use below
=Concat(Distinct Item_Code, '|')