문제

I have a field with hex a decimal values that look like FF FE, I need to remove the white space so the results are FFFE but trim is not working for me! Is there another function I can use?

도움이 되었습니까?

해결책

Trim only removes whitespace at the beginning and end. Use substitute instead.

=SUBSTITUTE({cell ref}," ","")

should do the trick

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top