Description: When I write the formula `=123+STYLE("my-style")` the value `123` appears in the cell and the style is applied. If I try to do the same for text, `="abc"+STYLE("my-style")` a value error (`#VALUE!`) is shown. Steps to Reproduce: 1. Create a custom style or use one of the builtin styles 2. Write or paste the `="abc"+STYLE("my-style")` formula in a cell Actual Results: Saw the value error (`#VALUE!`) Expected Results: The cell should contain and display the text value with the specified style applied. Reproducible: Always User Profile Reset: No Additional Info:
+ it's not an string connector but for summing "abc" it's a text not a number. It can be solved with: "abc"&T(STYLE("my-style"))