sig figs

mandopolis

New Member
Joined
Apr 15, 2002
Messages
9
in one of the true false if statements i am trying to write, i want it to show <0.200
and if $C$24=0.200 and my eqn looks like: "<"&$C$24 it spits out the answer as <.2 this is a real problem for me becuase i am a chemist and i need accuracy with sig figs. ive tried all the number formats, is there any other way this can be written, or am i missing something? PLEASE HELP!! THANX!!
 

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
Not sure if this is what you want, but try using custom format and enter "<" 0.000 for the cell where the answer is.
Then remove the "<" from your formula.
This message was edited by lenze on 2002-04-17 13:48
 
Upvote 0
On 2002-04-17 13:40, mandopolis wrote:
in one of the true false if statements i am trying to write, i want it to show <0.200
and if $C$24=0.200 and my eqn looks like: "<"&$C$24 it spits out the answer as <.2 this is a real problem for me becuase i am a chemist and i need accuracy with sig figs. ive tried all the number formats, is there any other way this can be written, or am i missing something? PLEASE HELP!! THANX!!

what about:

="<"&TEXT($C$24,"0.000")
 
Upvote 0
If you just want to see that it does equal 0.2000

You could use the formula

="<"&text($C$24,"0.000000000000")

This will give you as many decimals as you want (Subject to system limits)
 
Upvote 0
see cell $C$24 is being multiplied by another cell, so i need 3 places to the right of the decimal no matter what the result, sorry for the miscommunication.
 
Upvote 0
Hi,

With your raw data in A1 and the number of significant figures you desire in B1, try:

=ROUND(A1,B1-1-INT(LOG10(ABS(A1))))

Bye,
Jay
 
Upvote 0

Forum statistics

Threads
1,214,411
Messages
6,119,360
Members
448,888
Latest member
Arle8907

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