Please, help me modify the function to get instead of an array a string of items separated by semicolons.
Now by pressing F9 I get ={"item1","item2",...."itemX"} but I need just item1;item2;....;itemX
Function NoDups(rng As Range)
Dim arr(), i&, s$, x
arr = Intersect(rng.Parent.UsedRange...