Hello,
I tried this (maybe not correctly though)
replace (txt, "#", "4") works for the one character.
When I try it with a single line replace on a cell containing '#', it will return the data '4'
Replace ((txt, "#", "4"),(txt, "<", "3"),(txt, ">", "2"),(txt, "*", "1"))
This didn't work as i'd hoped.
esc = Replace (txt, "#", "4") & _
Replace (txt, "<", "3") & _
Replace (txt, ">", "2") & _
Replace (txt, "*", "1")
when i try it with multiple replace lines, it will return '4###' (via MsgBox strSQL) against the same data, one entry for each replace.
As I'm guessing formatting (sorry again...) there's something I'm missing here. Any ideas?