Hi,
How about sorting the range first with a macro then applying your UDF
e.g.
Sub Sort()
Range("A1:A6").Sort key1:=Range("A1")
Range("A9") = "=concat_range(A1:A6,"","")"
End Sub
Function Concat_Range(rngJoin As Range, strSep As String) As String
Concat_Range = Join(Filter(Application.Transpose(Evaluate("=IF(" & rngJoin.Address & "<>""""" _
& "," & rngJoin.Address & "," & """~""" & ")")), "~", False), strSep)
End Function
You will probably want to use use some code in the Sort macro to identify the range but I guess you see the idea.
Bookmarks