Friends,
I have several cells with text that contains in-cell formatting, like first word is in font A and second word is in font B. How can I combine/concat these cells into one cell while keeping the formatting?
Cell A1: <font times>Foo</font> <font sans>bar</font>
Cell B1: <font typewriter>Baz</font>
Required result:
Cell C1: =concat-with-formatting(A1;B1)
=> <font times>Foo</font> <font sans>bar</font><font typewriter>Baz</font>
Thanks for any hint!