I am currently using REGEX_Replace(_CurrrentField_,'[^\w]', '') for all text fields. is there anyway to prevent unicode characters were not convertable?
ConvError: Fuzzy Match (29): Comments: Some Unicode characters were not convertable ("therrror ÃÂÃâšÂÃâÅthisisjustasamplesentencebecausethisisasamplesentecetoreplicable the error")
Solved! Go to Solution.
Hello @maleryx,
You could try using this formula:
DecomposeUnicodeForMatch([Field1])
This converts your characters.
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Regards
ConvError: Multi-Field Formula (42): DecomposeUnicodeForMatch: Some Unicode characters were not convertable ("xxxÃââœ199xx1")
ConvError: Multi-Field Formula (42): DecomposeUnicodeForMatch: Some Unicode characters were not convertable ("xαxxxxxx_x48xxx22142")
Hello @maleryx,
The tool I showed you gets rid of most of the characters. There are som which cannot be converted like
ƒ
OR
œ
Those you either get rid of them with a regex replace tool or there is little much (as far as I know) to do about them
Regards
Hello @afv2688
I am trying to ConvertToCodePage([_CurrentField_], 65001). will let you know the outcome.