Вопрос

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