• Great solution Wayne, thank you...

    But for me, here's a tiny spanner in the works.

    The column that I need to produce a delimited list from is an int column - and I need the list ordered by integer. However, trying to concatenate ',' with an int of course results in a conversion error trying to convert ',' to an int... BUT, if I cast my int value as a varchar, of course, it then produces a list that runs 1,10,11, 12, 2, 20... etc...

    Any ideas please?

    Cheers

    Chris