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