Hi
Is there any way to remove this character from my data?
Thanks
Kuha
@Kuha ,
If you want to keep only ascii character, this formula might work.
REGEX_Replace([Data], "[^\x00-\x7F]", "")
Input / Output
Good luck.
Or if you just want to remove a particular character, you may simply put the charactor in ReplaceChar function as below.
ReplaceChar([Data], "↑", "")