How do I round off a concatenate value

I have typed in the following:
=CONCATENATE(G37-D37," just about match.")
I get the following back -
13.7166666666667 just about match

My question is, how do I round it off to 13.7? I tried format cell - Number with 1 decimal places, this did not work.

The value in cell G37 is 39.47 and D37 is 25.75. And just to let you know the “about match” value was 14.25
Any suggestion is helpful and thanks ahead.

_dave

Hello,

Try

=CONCATENATE(ROUND(G37-D37;1);" just about match.")

Also note ROUNDUP and ROUNDDOWN are available.

Thanks Ralslinger. That does the trick.