Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 59
Default Decimal Place Rounding

Hi,

I have a cell that looks at a cell on another sheet and simply
displays the contents if the conditions are right using an IF
statement.

Problem is, it displays the number as fully expressed
8.989348643268967E-05 and I just want a plain and simple 0.00008.

I have tried formatting the cell as a number and setting the DP and
also leaving it as general, but it still does it.

On the sheet it gets the number from, its displayed as 0.00008.

What am I doing wrong?

Cheers,

Aaron.

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5,651
Default Decimal Place Rounding

On 3 May 2007 16:37:49 -0700, Aaron wrote:

Hi,

I have a cell that looks at a cell on another sheet and simply
displays the contents if the conditions are right using an IF
statement.

Problem is, it displays the number as fully expressed
8.989348643268967E-05 and I just want a plain and simple 0.00008.

I have tried formatting the cell as a number and setting the DP and
also leaving it as general, but it still does it.

On the sheet it gets the number from, its displayed as 0.00008.

What am I doing wrong?

Cheers,

Aaron.


Post the formula that you are using in that cell.
--ron
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 59
Default Decimal Place Rounding

On May 4, 12:18 pm, Ron Rosenfeld wrote:
On 3 May 2007 16:37:49 -0700, Aaron wrote:





Hi,


I have a cell that looks at a cell on another sheet and simply
displays the contents if the conditions are right using an IF
statement.


Problem is, it displays the number as fully expressed
8.989348643268967E-05 and I just want a plain and simple 0.00008.


I have tried formatting the cell as a number and setting the DP and
also leaving it as general, but it still does it.


On the sheet it gets the number from, its displayed as 0.00008.


What am I doing wrong?


Cheers,


Aaron.


Post the formula that you are using in that cell.
--ron- Hide quoted text -

- Show quoted text -


=IF(M27=" "," ",IF(M27="Mettler SG32001 31Kg x 0.1Kg",'Balance SD
Calculator'!C19,(IF(M27="Avery Berkel FA214-A 210g x 0.0001g",'Balance
SD Calculator'!I19,(IF(M27="AND MF6100 6100g x 0.01g",'Balance SD
Calculator'!F19,(IF(M27="Temporary Scale 300kg x 0.05kg",'Balance SD
Calculator'!O19," ")))))))&AK29)

AK29 is just a symbol g, M27 is a pull down validation box that has
the balance text in it as in the IF statement above.

Cheers,

Aaron.

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 837
Default Decimal Place Rounding

Concatenation makes the result of your formula text, and therefore unaffected
by number formats. You can format the numeric portion of the formula (before
concatenting it) via the TEXT() function.

Jerry

"Aaron" wrote:

On May 4, 12:18 pm, Ron Rosenfeld wrote:
On 3 May 2007 16:37:49 -0700, Aaron wrote:





Hi,


I have a cell that looks at a cell on another sheet and simply
displays the contents if the conditions are right using an IF
statement.


Problem is, it displays the number as fully expressed
8.989348643268967E-05 and I just want a plain and simple 0.00008.


I have tried formatting the cell as a number and setting the DP and
also leaving it as general, but it still does it.


On the sheet it gets the number from, its displayed as 0.00008.


What am I doing wrong?


Cheers,


Aaron.


Post the formula that you are using in that cell.
--ron- Hide quoted text -

- Show quoted text -


=IF(M27=" "," ",IF(M27="Mettler SG32001 31Kg x 0.1Kg",'Balance SD
Calculator'!C19,(IF(M27="Avery Berkel FA214-A 210g x 0.0001g",'Balance
SD Calculator'!I19,(IF(M27="AND MF6100 6100g x 0.01g",'Balance SD
Calculator'!F19,(IF(M27="Temporary Scale 300kg x 0.05kg",'Balance SD
Calculator'!O19," ")))))))&AK29)

AK29 is just a symbol g, M27 is a pull down validation box that has
the balance text in it as in the IF statement above.

Cheers,

Aaron.


  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 59
Default Decimal Place Rounding

On May 4, 1:32 pm, Jerry W. Lewis wrote:
Concatenation makes the result of your formula text, and therefore unaffected
by number formats. You can format the numeric portion of the formula (before
concatenting it) via the TEXT() function.

Jerry



"Aaron" wrote:
On May 4, 12:18 pm, Ron Rosenfeld wrote:
On 3 May 2007 16:37:49 -0700, Aaron wrote:


Hi,


I have a cell that looks at a cell on another sheet and simply
displays the contents if the conditions are right using an IF
statement.


Problem is, it displays the number as fully expressed
8.989348643268967E-05 and I just want a plain and simple 0.00008.


I have tried formatting the cell as a number and setting the DP and
also leaving it as general, but it still does it.


On the sheet it gets the number from, its displayed as 0.00008.


What am I doing wrong?


Cheers,


Aaron.


Post the formula that you are using in that cell.
--ron- Hide quoted text -


- Show quoted text -


=IF(M27=" "," ",IF(M27="Mettler SG32001 31Kg x 0.1Kg",'Balance SD
Calculator'!C19,(IF(M27="Avery Berkel FA214-A 210g x 0.0001g",'Balance
SD Calculator'!I19,(IF(M27="AND MF6100 6100g x 0.01g",'Balance SD
Calculator'!F19,(IF(M27="Temporary Scale 300kg x 0.05kg",'Balance SD
Calculator'!O19," ")))))))&AK29)


AK29 is just a symbol g, M27 is a pull down validation box that has
the balance text in it as in the IF statement above.


Cheers,


Aaron.- Hide quoted text -


- Show quoted text -


Yes of course, I didnt think of this I have altered a line with the
following

TEXT('Balance SD Calculator'!I19,"0.00000")

and it is working fine now.

Many thanks.

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 errors when a "5" is the third decimal place using formul Jbagger Excel Discussion (Misc queries) 4 March 28th 07 01:52 AM
Subtracting two 2-decimal place numbers gives result 13-decimal places? [email protected] Excel Worksheet Functions 5 March 12th 07 10:38 PM
Converting 2-place decimal value to floating point decimal number with leading zero Kermit Piper Excel Discussion (Misc queries) 3 March 18th 06 06:20 PM
changing to two place decimal Debbie Excel Worksheet Functions 1 February 5th 06 04:53 AM
Fixed decimal place CheriFireFox Setting up and Configuration of Excel 2 May 13th 05 04:10 PM


All times are GMT +1. The time now is 01:17 AM.

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

About Us

"It's about Microsoft Excel"