Nov 12 2023 08:00 PM
I am trying to get the text formated as shown in cell A4, using formula in cell C4 as shown in formula content in cell D4. If that is possible formating each word why I can't get it in a formula? I tryied using control characters but I ignore which one I could use to change text properties for a single word or multiple words but not the entire cell content.
In this example Caracter(10) (character(10)) equals Alt Enter. I am getting row change correctly.
If it is not possible with formulas, can I get it done using a VBA script?
Thanks and Regards
Gustavo Lira
Nov 12 2023 11:19 PM
If with html tag,easier to concate with format.
select group_concat(iif(f01="uderscore","<u>"||f01||"</u>",highfont(f01,f01)),'</td><td>') raw from format_font;
select group_concat(iif(f01="uderscore","<u>"||f01||"</u>",highfont(f01,f01)),'<br>') raw from format_font;
Nov 13 2023 01:56 AM
Excel cannot format parts of the result of a formula differently from the rest.