I joined arrays on a dictionary using this, based on an answer i got in a previous question i asked in this site.
ks = Join(Array(data(k, 1), Split(data(k, 3) & "-> ", "-> ")(1)), ChrW(8203))
for starters what does the ChrW(8203)
represent?
this is how the data i am trying to split looks like
For c = 1 to Range("A2").End(xlDown).Row
For i = 1 to dic.Count
If Range("A" & c +1).Value = dic(i) Then
Range("D") & c + 1).Text = kss(i) ' << ?
End If
Next i
Next c
and i dont know what the "?" represents how can i split the two values later? using the split
function? Thank you very much for any help!