Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() I would like to combine two statements: IF(D30="nd","<0.1",D30) This statement yields < 0.1 if the user enters "nd" into D30, otherwise, the statement yields whatever is put into D30. OR (D30="nd",D30<=0.44) This statement allows the user to only input into the cell a "nd" or any number less than or equal to 0.44. I need a combined statement that will yield a "< 0.1" if a user enters "nd" into D30, yields a "< 0.1" if a user enters any value less than or equal to 0.04. If anything else, then the statement would yield whatever is put into D30. In other words, I need a statment to say IF D30="nd" OR <=0.44, then the yield would be "< 0.1". Otherwise, the yield would be whatever is put into the cell (any number greater than 0.44) Can someone please help? Thanks!!!! -- tsammons ------------------------------------------------------------------------ tsammons's Profile: http://www.excelforum.com/member.php...o&userid=30335 View this thread: http://www.excelforum.com/showthread...hreadid=533748 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
=if(or(D30="nd",D30<=0.44),"<0.1",D30)
-- Regards, Tom Ogilvy "tsammons" wrote: I would like to combine two statements: IF(D30="nd","<0.1",D30) This statement yields < 0.1 if the user enters "nd" into D30, otherwise, the statement yields whatever is put into D30. OR (D30="nd",D30<=0.44) This statement allows the user to only input into the cell a "nd" or any number less than or equal to 0.44. I need a combined statement that will yield a "< 0.1" if a user enters "nd" into D30, yields a "< 0.1" if a user enters any value less than or equal to 0.04. If anything else, then the statement would yield whatever is put into D30. In other words, I need a statment to say IF D30="nd" OR <=0.44, then the yield would be "< 0.1". Otherwise, the yield would be whatever is put into the cell (any number greater than 0.44) Can someone please help? Thanks!!!! -- tsammons ------------------------------------------------------------------------ tsammons's Profile: http://www.excelforum.com/member.php...o&userid=30335 View this thread: http://www.excelforum.com/showthread...hreadid=533748 |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
=IF(OR(D30="nd",D30<=0.04),"<0.1",D30)
HTH -- AP "tsammons" a écrit dans le message de ... I would like to combine two statements: IF(D30="nd","<0.1",D30) This statement yields < 0.1 if the user enters "nd" into D30, otherwise, the statement yields whatever is put into D30. OR (D30="nd",D30<=0.44) This statement allows the user to only input into the cell a "nd" or any number less than or equal to 0.44. I need a combined statement that will yield a "< 0.1" if a user enters "nd" into D30, yields a "< 0.1" if a user enters any value less than or equal to 0.04. If anything else, then the statement would yield whatever is put into D30. In other words, I need a statment to say IF D30="nd" OR <=0.44, then the yield would be "< 0.1". Otherwise, the yield would be whatever is put into the cell (any number greater than 0.44) Can someone please help? Thanks!!!! -- tsammons ------------------------------------------------------------------------ tsammons's Profile: http://www.excelforum.com/member.php...o&userid=30335 View this thread: http://www.excelforum.com/showthread...hreadid=533748 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|