Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 740
Default What is this option for?

Hello again,

Based on a reading from previous question dtd. 28.4.07. "EXCEL IF FUNCTION"

On an open workbook, I click
ToolsOptionEDIT"fix decimals" [checked]
e.g. 2

Cell A1 : 10209.00
Cell A2:10208.70

A3=IF(A1-A2=0.3,3,0)
The expected result was not correct in due respect with the Option availed
by my excel 2003.

I wonder how will this option be indeed fairly adjust my needs with
Formulas. Maybe a macro or something simple from our contributing members can
help me with this..

Thanks for trying.

--
regards,
driller
*****
birds of the same feather flock together..

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 623
Default What is this option for?

What result did you get, and what did you expect?

If you got 0 (like I did), but were expecting 3, you need to round your values.
Computers work in binary, and often don't translate decimal numbers properly.
The following should do what you want:

=if(round(a1-a2,2)=0.3,3,0)

--
Regards,
Fred


"driller" wrote in message
...
Hello again,

Based on a reading from previous question dtd. 28.4.07. "EXCEL IF FUNCTION"

On an open workbook, I click
ToolsOptionEDIT"fix decimals" [checked]
e.g. 2

Cell A1 : 10209.00
Cell A2:10208.70

A3=IF(A1-A2=0.3,3,0)
The expected result was not correct in due respect with the Option availed
by my excel 2003.

I wonder how will this option be indeed fairly adjust my needs with
Formulas. Maybe a macro or something simple from our contributing members can
help me with this..

Thanks for trying.

--
regards,
driller
*****
birds of the same feather flock together..



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 837
Default What is this option for?

"Fixed decimal" has to do with how you enter data, not how Excel calculates
formulas. For instance, if you check "Fixed decimal" and set "Places" to 2
and then enter 1035, Excel will accept the value as 10.35 (it will put the
decimal point 2 places in without you having to type the decimal point.

Perhaps you have confused this edit option with the calculation option
"Precision as displayed" which rounds all values and results to the display
precision?

Jerry

"driller" wrote:

Hello again,

Based on a reading from previous question dtd. 28.4.07. "EXCEL IF FUNCTION"

On an open workbook, I click
ToolsOptionEDIT"fix decimals" [checked]
e.g. 2

Cell A1 : 10209.00
Cell A2:10208.70

A3=IF(A1-A2=0.3,3,0)
The expected result was not correct in due respect with the Option availed
by my excel 2003.

I wonder how will this option be indeed fairly adjust my needs with
Formulas. Maybe a macro or something simple from our contributing members can
help me with this..

Thanks for trying.

--
regards,
driller
*****
birds of the same feather flock together..

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 740
Default What is this option for?

Now i have known here the difference for Precision and Fix decimals options.
So I may try not to forget the If function precision.


regards
driller
--
*****
birds of the same feather flock together..



"Jerry W. Lewis" wrote:

"Fixed decimal" has to do with how you enter data, not how Excel calculates
formulas. For instance, if you check "Fixed decimal" and set "Places" to 2
and then enter 1035, Excel will accept the value as 10.35 (it will put the
decimal point 2 places in without you having to type the decimal point.

Perhaps you have confused this edit option with the calculation option
"Precision as displayed" which rounds all values and results to the display
precision?

Jerry

"driller" wrote:

Hello again,

Based on a reading from previous question dtd. 28.4.07. "EXCEL IF FUNCTION"

On an open workbook, I click
ToolsOptionEDIT"fix decimals" [checked]
e.g. 2

Cell A1 : 10209.00
Cell A2:10208.70

A3=IF(A1-A2=0.3,3,0)
The expected result was not correct in due respect with the Option availed
by my excel 2003.

I wonder how will this option be indeed fairly adjust my needs with
Formulas. Maybe a macro or something simple from our contributing members can
help me with this..

Thanks for trying.

--
regards,
driller
*****
birds of the same feather flock together..

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 740
Default What is this option for?

....relies heavily on toolsOptionsCalculation"Precision as displayed"

thanks so much..Sir Jerry

--
*****driller
birds of the same feather flock together..



"driller" wrote:

Now i have known here the difference for Precision and Fix decimals options.
So I may try not to forget the If function precision.


regards
driller
--
*****
birds of the same feather flock together..



"Jerry W. Lewis" wrote:

"Fixed decimal" has to do with how you enter data, not how Excel calculates
formulas. For instance, if you check "Fixed decimal" and set "Places" to 2
and then enter 1035, Excel will accept the value as 10.35 (it will put the
decimal point 2 places in without you having to type the decimal point.

Perhaps you have confused this edit option with the calculation option
"Precision as displayed" which rounds all values and results to the display
precision?

Jerry

"driller" wrote:

Hello again,

Based on a reading from previous question dtd. 28.4.07. "EXCEL IF FUNCTION"

On an open workbook, I click
ToolsOptionEDIT"fix decimals" [checked]
e.g. 2

Cell A1 : 10209.00
Cell A2:10208.70

A3=IF(A1-A2=0.3,3,0)
The expected result was not correct in due respect with the Option availed
by my excel 2003.

I wonder how will this option be indeed fairly adjust my needs with
Formulas. Maybe a macro or something simple from our contributing members can
help me with this..

Thanks for trying.

--
regards,
driller
*****
birds of the same feather flock together..



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 740
Default What is this option for?

....yet the conditional formatting formula may have another option <i dont
know where for its precision using the If function even with or without the
Precision As Displayed. Hoping there is a fix way..?

--
*****
birds of the same feather flock together..



"driller" wrote:

...relies heavily on toolsOptionsCalculation"Precision as displayed"

thanks so much..Sir Jerry

--
*****driller
birds of the same feather flock together..



"driller" wrote:

Now i have known here the difference for Precision and Fix decimals options.
So I may try not to forget the If function precision.


regards
driller
--
*****
birds of the same feather flock together..



"Jerry W. Lewis" wrote:

"Fixed decimal" has to do with how you enter data, not how Excel calculates
formulas. For instance, if you check "Fixed decimal" and set "Places" to 2
and then enter 1035, Excel will accept the value as 10.35 (it will put the
decimal point 2 places in without you having to type the decimal point.

Perhaps you have confused this edit option with the calculation option
"Precision as displayed" which rounds all values and results to the display
precision?

Jerry

"driller" wrote:

Hello again,

Based on a reading from previous question dtd. 28.4.07. "EXCEL IF FUNCTION"

On an open workbook, I click
ToolsOptionEDIT"fix decimals" [checked]
e.g. 2

Cell A1 : 10209.00
Cell A2:10208.70

A3=IF(A1-A2=0.3,3,0)
The expected result was not correct in due respect with the Option availed
by my excel 2003.

I wonder how will this option be indeed fairly adjust my needs with
Formulas. Maybe a macro or something simple from our contributing members can
help me with this..

Thanks for trying.

--
regards,
driller
*****
birds of the same feather flock together..

  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 740
Default What is this option for?

Sir Jerry,
Again, I think i need to turn some loose nuts on my understanding with excel.

Perhaps you have confused this edit option with the calculation option
"Precision as displayed" which rounds all values and results to the display
precision?


i just wonder if All values are really rounded as been displayed Along with
the calculation mode for Arrayed formulas handling different search/sum/count
criterias. The ToolsFormula auditingEvaluate formula doesn't sometime
evaluate the values in the Order of the Checked Precision...

Are there any built-in or macros for tools or options that can surely unify
the Precision tool and Formula evaluation tool - expected result - for
mini-complex formulas that we learn from this forum-only.

I also wonder why upon checking the "Precision as Displayed" check box, a
Pop-Up message says "Data will permanently LOSE accuracy.! "
Yet in some respect, may i write that it is more accurate and hence "IF
Formula will gain accuracy.." Other than the arrayed "with criteria" formulas.

Please advise..

regards,
driller

--
*****
birds of the same feather flock together..



"Jerry W. Lewis" wrote:

"Fixed decimal" has to do with how you enter data, not how Excel calculates
formulas. For instance, if you check "Fixed decimal" and set "Places" to 2
and then enter 1035, Excel will accept the value as 10.35 (it will put the
decimal point 2 places in without you having to type the decimal point.

Perhaps you have confused this edit option with the calculation option
"Precision as displayed" which rounds all values and results to the display
precision?

Jerry

"driller" wrote:

Hello again,

Based on a reading from previous question dtd. 28.4.07. "EXCEL IF FUNCTION"

On an open workbook, I click
ToolsOptionEDIT"fix decimals" [checked]
e.g. 2

Cell A1 : 10209.00
Cell A2:10208.70

A3=IF(A1-A2=0.3,3,0)
The expected result was not correct in due respect with the Option availed
by my excel 2003.

I wonder how will this option be indeed fairly adjust my needs with
Formulas. Maybe a macro or something simple from our contributing members can
help me with this..

Thanks for trying.

--
regards,
driller
*****
birds of the same feather flock together..

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
preserve formatting option in pivot table option dialog box Dave F Excel Discussion (Misc queries) 4 May 8th 08 07:25 PM
General option option not available Gunnar Lysaker Excel Discussion (Misc queries) 1 January 6th 07 01:08 AM
keep source formatting is not an option in paste option button Tina Excel Discussion (Misc queries) 0 February 20th 06 09:58 PM
Reformat IF(ISERROR(....) : if 1st option returns empty, look at 2nd option. sonar Excel Worksheet Functions 3 September 12th 05 09:52 PM
Using VLOOKUP for one option, if this option is not valid than sec Edd Excel Discussion (Misc queries) 2 March 31st 05 11:11 AM


All times are GMT +1. The time now is 03:15 PM.

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"