Hey,

I was wondering if someone could help, I have the following VBA and was wondering if anyone could help me add a separator between the results i.e. "+" or "|"

Dim i As Long
Dim j As Long
Dim k As Long
Dim l As Long
For i = 1 To 26
For j = 1 To 26
For k = 1 To 26
l = l + 1
Range("D" & l) = Range("A" & i) & _
Range("B" & j) & _
Range("C" & k)
Next 'k
Next 'j
Next 'i

Any help would be greatly appreciated.

THanks,

Jon