Jim said:
Thanks Guys, that looks great, one problem is that when I include
letters in the unicode it busts. I am referencing a unicode list
online, perhaps that is the problem. Note my code below:
Me!QuestSkipto = Me!QuestSkipto & ChrW(25B6) & " " & "Goto Q000" &
vbCrLf
"Letters in the unicode"? These should be numeric values. Is your list
giving you hexadecimal codes by any chance? Are you looking for the
character ? , which may or may not appear correctly in this posted
message but is a sort of right-pointing arrowhead? If so, your list is
giving you hexadecimal values and you can specify them in your code like
this:
Me!QuestSkipto = Me!QuestSkipto & _
ChrW(&H25B6) & _
" Goto Q000" & vbCrLf