lezawang
Well-known Member
- Joined
- Mar 27, 2016
- Messages
- 1,805
- Office Version
- 2016
- Platform
- Windows
Hi
I have cells as below. I know clean() function will not clean these chars and I will need to do substitute() these chars with "" for example. But I have 2 questions:
1) does that mean I have to create a new substitute() function for each cell? knowing these cells are having different chars? that wont be practical. Is there any better way?
2) How do I know the code of a character? for example, I read and found that [] code is 127 but lets say I do not know that how can I know the code? I went to Insert-->Symbol and tried to find [] but that is very time consuming, is there anyway to search (reverse search)? Thank you very much
=CHAR(127)&" "&"Hello"&" "&CHAR(127)
=CHAR(126)&" Hello "&CHAR(126)
=CHAR(125)&"Hello"
=CHAR(134)&"Hello"
=CHAR(127)&CHAR(127)&"Hello"
I have cells as below. I know clean() function will not clean these chars and I will need to do substitute() these chars with "" for example. But I have 2 questions:
1) does that mean I have to create a new substitute() function for each cell? knowing these cells are having different chars? that wont be practical. Is there any better way?
2) How do I know the code of a character? for example, I read and found that [] code is 127 but lets say I do not know that how can I know the code? I went to Insert-->Symbol and tried to find [] but that is very time consuming, is there anyway to search (reverse search)? Thank you very much
=CHAR(127)&" "&"Hello"&" "&CHAR(127)
=CHAR(126)&" Hello "&CHAR(126)
=CHAR(125)&"Hello"
=CHAR(134)&"Hello"
=CHAR(127)&CHAR(127)&"Hello"