From: David on
When I combine text and a formula - i.e. ="Avg "& SUM(D30) - it comes out as
Avg 0.286253661284266 but I only want it to 2 decimal points!

The D30 cell contains the simple formula for £152458.70 divided by 532,600

Can someone explain or show me how I can produce an answer to 2 decimal
points as "Avg 0.28"?

Thanks
From: Luke M on
Something similar to:

="Avg "&TEXT(SUM(D30),"$#.00")


You need to use the TEXT function to format the formula portion.

--
Best Regards,

Luke M
"David" <David(a)discussions.microsoft.com> wrote in message
news:3575BA87-0660-4E61-9590-022B744F9C4A(a)microsoft.com...
> When I combine text and a formula - i.e. ="Avg "& SUM(D30) - it comes out
> as
> Avg 0.286253661284266 but I only want it to 2 decimal points!
>
> The D30 cell contains the simple formula for �152458.70 divided by 532,600
>
> Can someone explain or show me how I can produce an answer to 2 decimal
> points as "Avg 0.28"?
>
> Thanks


From: Russell Dawson on
Make your entry simply =SUM(D30)

Then custom format cell to read "Ave" 0.00

Result to 2 places is .29
--
Russell Dawson
Excel Student

Please hit "Yes" if this post was helpful.


"David" wrote:

> When I combine text and a formula - i.e. ="Avg "& SUM(D30) - it comes out as
> Avg 0.286253661284266 but I only want it to 2 decimal points!
>
> The D30 cell contains the simple formula for £152458.70 divided by 532,600
>
> Can someone explain or show me how I can produce an answer to 2 decimal
> points as "Avg 0.28"?
>
> Thanks
From: Teethless mama on
="Avg "&ROUND(D30,2)


"David" wrote:

> When I combine text and a formula - i.e. ="Avg "& SUM(D30) - it comes out as
> Avg 0.286253661284266 but I only want it to 2 decimal points!
>
> The D30 cell contains the simple formula for £152458.70 divided by 532,600
>
> Can someone explain or show me how I can produce an answer to 2 decimal
> points as "Avg 0.28"?
>
> Thanks
From: מיכאל (מיקי) אבידן on
He stated, very clearly, that he expects: Avg 0.28 that means NOT Avg 0.29
Micky


"Teethless mama" wrote:

> ="Avg "&ROUND(D30,2)
>
>
> "David" wrote:
>
> > When I combine text and a formula - i.e. ="Avg "& SUM(D30) - it comes out as
> > Avg 0.286253661284266 but I only want it to 2 decimal points!
> >
> > The D30 cell contains the simple formula for £152458.70 divided by 532,600
> >
> > Can someone explain or show me how I can produce an answer to 2 decimal
> > points as "Avg 0.28"?
> >
> > Thanks