Hello.
How can I concatenate formatted cell values as they are displayed, without having to manually re-do the formatting for each concatenated cell?
Example:
A1 A2 A3
Content 31.12.2012 =1/3 ="On the " & A1 & " we had " & A2 & " times as many."
Result 31.12.12 0.33 On the 41274 we had 0.33333333333333 times as many.
Expected 31.12.12 0.33 On the 31.12.12 we had 0.33 times as many.
(Let’s assume A2 is formatted as “0.00” and the date format is German … that’s just an example.)
If there was a formula like “formattedValue()” which hands over the displayed value of a cell, I could rewrite it like:
="On the " & formattedValue(A1) & " we had " & formattedValue(A2) & " times as many."
which would be fine. I just couldn’t find anything like that.
Can anyone help?
Thanks,
Ralf