I would like to have a cell that has a formula in it (like =SUM(A1:A5)) and some text after the formula, with the desired effect of something like:
50 apples
What I have tried
=SUM(B:B), apples
Just use the CONCATENATE() function:
=CONCATENATE(SUM(B:B); " apples")
Another solution would be to define a custom number format.