Adding text to cell with formula changes rounding

natrlhy

New Member
Joined
Mar 19, 2009
Messages
6
Hello all,

Here's my scenario:

In the cell I originally have this function: =SUM(H7:H85)/1024/1024

The output in the cell is: 1,284.78 (formatting is done by right clicking on the cell and changing the output there).

When I add text to the cell I have this function: =SUM(H7:H85)/1024/1024&" GB"

Output is now this: 1284.77679729461 GB

How do I get it to retain the formatting and round it properly?

Thanks!
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
Hello and welcome to MrExcel.

Try

=TEXT(SUM(H7:H85)/1024/1024,"0.00")&" GB"
 
Upvote 0
Thank you to you both! I tried the ROUND function but I must not of had the syntax right even though excel didn't complain.

Both of these work!

Thanks again!
 
Upvote 0
How about when using the AVERAGE function? I'm trying to average some time entries:

Before: =AVERAGE(I7:I84)
Output: 01:02

After: ="Avg. Time: "&AVERAGE(I7:I84)
Output: Avg. Time: 0.043207994579945799

I tried this: ="Avg. Time: "&TEXT(AVERAGE(I7:I84),"00:00") and only get #VALUE! in the cell.

Thanks!
 
Upvote 0
With regards to the =ROUND(SUM(H7:H85)/1024/1024,2) & " GB" or =TEXT(SUM(H7:H85)/1024/1024,"0.00")&" GB" how do I get it to retain the commas when the enough digits warrant it?
 
Upvote 0

Forum statistics

Threads
1,214,427
Messages
6,119,419
Members
448,895
Latest member
omarahmed1

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top