Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=IF((H3D3, CHAR(233)),if (H3<D3, CHAR(234)),if (H3=D3, CHAR(109)))
Shouldn't this work or what am I missing? thanks |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
As copied, I had errors. This seemed to work:
=IF(H3D3,CHAR(233),IF(H3<D3,CHAR(234),IF(H3=D3,CH AR(109)))) If D3 & H3 are numbers, maybe: =CHOOSE(SIGN(H3-D3)+2,"ê","m","é") -- Dana DeLouis "pgarcia" wrote in message ... =IF((H3D3, CHAR(233)),if (H3<D3, CHAR(234)),if (H3=D3, CHAR(109))) Shouldn't this work or what am I missing? thanks |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You are a little messed up. Your final criteria H3=D3 is not necessary as you
have already determined that it is not greate or less than (must be equal)... Try this... =IF(H3D3, CHAR(233),if(H3<D3, CHAR(234),CHAR(109))) -- HTH... Jim Thomlinson "pgarcia" wrote: =IF((H3D3, CHAR(233)),if (H3<D3, CHAR(234)),if (H3=D3, CHAR(109))) Shouldn't this work or what am I missing? thanks |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try
=IF(H3D3, CHAR(233),IF(H3<D3, CHAR(234)), CHAR(109))) But beware of the so-called IEEE rounding error. If calculations are involved you may get values like H3=10 and D3=9.99999999999999. You will expect CHAR(109) but will get CHAR(233) =IF(ABS(H3-D3)<1E-6, CHAR(109), IF(H3D3, CHAR(233), CHAR(234))) will treat the two numbers as equal if their difference is less than one-millionth. best wishes -- Bernard V Liengme Microsoft Excel MVP www.stfx.ca/people/bliengme remove caps from email "pgarcia" wrote in message ... =IF((H3D3, CHAR(233)),if (H3<D3, CHAR(234)),if (H3=D3, CHAR(109))) Shouldn't this work or what am I missing? thanks |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
THAT IT!!!
Thanks "Jim Thomlinson" wrote: You are a little messed up. Your final criteria H3=D3 is not necessary as you have already determined that it is not greate or less than (must be equal)... Try this... =IF(H3D3, CHAR(233),if(H3<D3, CHAR(234),CHAR(109))) -- HTH... Jim Thomlinson "pgarcia" wrote: =IF((H3D3, CHAR(233)),if (H3<D3, CHAR(234)),if (H3=D3, CHAR(109))) Shouldn't this work or what am I missing? thanks |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Careless!
=IF(H3D3, CHAR(233),IF(H3<D3, CHAR(234), CHAR(109))) -- Bernard V Liengme Microsoft Excel MVP www.stfx.ca/people/bliengme remove caps from email "Bernard Liengme" wrote in message ... Try =IF(H3D3, CHAR(233),IF(H3<D3, CHAR(234)), CHAR(109))) But beware of the so-called IEEE rounding error. If calculations are involved you may get values like H3=10 and D3=9.99999999999999. You will expect CHAR(109) but will get CHAR(233) =IF(ABS(H3-D3)<1E-6, CHAR(109), IF(H3D3, CHAR(233), CHAR(234))) will treat the two numbers as equal if their difference is less than one-millionth. best wishes -- Bernard V Liengme Microsoft Excel MVP www.stfx.ca/people/bliengme remove caps from email "pgarcia" wrote in message ... =IF((H3D3, CHAR(233)),if (H3<D3, CHAR(234)),if (H3=D3, CHAR(109))) Shouldn't this work or what am I missing? thanks |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Is it monday where you live too. <g After that great expanation you mess up
a bracket. Ain't that just the way... -- HTH... Jim Thomlinson "Bernard Liengme" wrote: Careless! =IF(H3D3, CHAR(233),IF(H3<D3, CHAR(234), CHAR(109))) -- Bernard V Liengme Microsoft Excel MVP www.stfx.ca/people/bliengme remove caps from email "Bernard Liengme" wrote in message ... Try =IF(H3D3, CHAR(233),IF(H3<D3, CHAR(234)), CHAR(109))) But beware of the so-called IEEE rounding error. If calculations are involved you may get values like H3=10 and D3=9.99999999999999. You will expect CHAR(109) but will get CHAR(233) =IF(ABS(H3-D3)<1E-6, CHAR(109), IF(H3D3, CHAR(233), CHAR(234))) will treat the two numbers as equal if their difference is less than one-millionth. best wishes -- Bernard V Liengme Microsoft Excel MVP www.stfx.ca/people/bliengme remove caps from email "pgarcia" wrote in message ... =IF((H3D3, CHAR(233)),if (H3<D3, CHAR(234)),if (H3=D3, CHAR(109))) Shouldn't this work or what am I missing? thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to deal with a growing dataset... | Excel Discussion (Misc queries) | |||
how do i deal with percentage values in a regression? | Excel Discussion (Misc queries) | |||
Totals sheet - deal with employee names | Excel Worksheet Functions | |||
What is the deal with Comment Object Positioning? | Excel Discussion (Misc queries) | |||
how to deal with multiple matches on vlookup? | Excel Discussion (Misc queries) |