How to add bullets to the items in a list

Hi @santhosh_arjun

Can you try below

items = {"Item1", "Item2", "Item3"}
bulletedList = String.Join(Environment.NewLine, items.Select(Function(item) "• " & item))

Cheers!!

1 Like