How to replace accented characters with non-accented

It can be done using replace(). For instance:

replace( replace([VENDEUR], 'é', 'e') , 'à', 'a')
2 Likes

Also, see this topic: Map string and diacritical character mapping [DONE]