Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
tvh tvh is offline
external usenet poster
 
Posts: 11
Default Problem with Rounding (2007)

For some reason I'm not able to round to the third decimal place. This is
the formula I have in cell H61: =ROUND(AP10,3)&""""&" x "&ROUND(AR8,3)&""""

Where, for example:
AP10 = 6.600 (formatted to 3 decimal places, with no " marks)
AR8 = 0.280 (same formatting as above)

I would like the result to show: 6.600" x 0.280"

But I'm getting: 6.6" x 0.28"

Formatting the H61 cell doesn't work either.

  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default Problem with Rounding (2007)

You need to use the text function. Try

=Text(ROUND(AP10,3),"0.000")&"""&" x "&Text(ROUND(AR8,3),"0.000")&"""
--
David W Ackerman


"tvh" wrote:

For some reason I'm not able to round to the third decimal place. This is
the formula I have in cell H61: =ROUND(AP10,3)&""""&" x "&ROUND(AR8,3)&""""

Where, for example:
AP10 = 6.600 (formatted to 3 decimal places, with no " marks)
AR8 = 0.280 (same formatting as above)

I would like the result to show: 6.600" x 0.280"

But I'm getting: 6.6" x 0.28"

Formatting the H61 cell doesn't work either.

  #3   Report Post  
Posted to microsoft.public.excel.misc
tvh tvh is offline
external usenet poster
 
Posts: 11
Default Problem with Rounding (2007)

Thanks, David

I had to slightly modify the formula for it to work:
=TEXT(ROUND(AP10,3),"0.000")&""""&TEXT(ROUND(AR8,3 ),"0.000")&""""

I added two extra " marks.

Thanks!!!

"DAckerman Hyannis,MA" wrote:

You need to use the text function. Try

=Text(ROUND(AP10,3),"0.000")&"""&" x "&Text(ROUND(AR8,3),"0.000")&"""
--
David W Ackerman


"tvh" wrote:

For some reason I'm not able to round to the third decimal place. This is
the formula I have in cell H61: =ROUND(AP10,3)&""""&" x "&ROUND(AR8,3)&""""

Where, for example:
AP10 = 6.600 (formatted to 3 decimal places, with no " marks)
AR8 = 0.280 (same formatting as above)

I would like the result to show: 6.600" x 0.280"

But I'm getting: 6.6" x 0.28"

Formatting the H61 cell doesn't work either.

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 905
Default Problem with Rounding (2007)

"tvh" wrote:
This is the formula I have in cell H61:
=ROUND(AP10,3)&""""&" x "&ROUND(AR8,3)&""""

[....]
I would like the result to show: 6.600" x 0.280"


The following should suffice:

=TEXT(AP10,"0.000") & """ x " & TEXT(AR8,"0.000") & """"


----- original message -----

"tvh" wrote:
For some reason I'm not able to round to the third decimal place. This is
the formula I have in cell H61: =ROUND(AP10,3)&""""&" x "&ROUND(AR8,3)&""""

Where, for example:
AP10 = 6.600 (formatted to 3 decimal places, with no " marks)
AR8 = 0.280 (same formatting as above)

I would like the result to show: 6.600" x 0.280"

But I'm getting: 6.6" x 0.28"

Formatting the H61 cell doesn't work either.

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 5,651
Default Problem with Rounding (2007)

On Fri, 19 Mar 2010 08:17:01 -0700, tvh wrote:

For some reason I'm not able to round to the third decimal place. This is
the formula I have in cell H61: =ROUND(AP10,3)&""""&" x "&ROUND(AR8,3)&""""

Where, for example:
AP10 = 6.600 (formatted to 3 decimal places, with no " marks)
AR8 = 0.280 (same formatting as above)

I would like the result to show: 6.600" x 0.280"

But I'm getting: 6.6" x 0.28"

Formatting the H61 cell doesn't work either.



=TEXT(AP10,"0.000\""") & " x " & TEXT(AR8,"0.000\""")

--ron
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Rounding Problem Ross Excel Discussion (Misc queries) 5 April 3rd 09 01:53 AM
Rounding Problem kleivakat Excel Discussion (Misc queries) 3 December 5th 07 10:34 PM
Rounding Problem Alfred Kaufmann New Users to Excel 8 September 3rd 07 11:22 PM
Rounding Problem PWS Excel Worksheet Functions 5 March 9th 07 05:21 PM
Rounding Problem Mike Excel Discussion (Misc queries) 8 September 9th 06 03:59 PM


All times are GMT +1. The time now is 10:05 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"