Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
I have this If statement in H12 and it works except when E12 is blank I
want H12 to be blank. =IF(E12=0%,"Closed",IF(E12=100%,"closed","open")) I'm not sure how to make that happen. Could someone please help me. TIA gls858 |
#2
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
=IF(LEN(TRIM(E12))=0,"",IF(OR(E12=0%,E12=100%),"cl osed","open"))
-- Don Guillett Microsoft MVP Excel SalesAid Software "gls858" wrote in message ... I have this If statement in H12 and it works except when E12 is blank I want H12 to be blank. =IF(E12=0%,"Closed",IF(E12=100%,"closed","open")) I'm not sure how to make that happen. Could someone please help me. TIA gls858 |
#3
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
On 5/18/2010 11:09, Don Guillett wrote:
=IF(LEN(TRIM(E12))=0,"",IF(OR(E12=0%,E12=100%),"cl osed","open")) THanks Don. Worked perfectly. |
#4
![]() |
|||
|
|||
![]()
Hello, For multiple conditioned IF function, it would be best to use the IFS Function in excel.
IFS function work the same as the IF function, but: =ifs(Logical test 1, value if true1, logical test 2, value if true 2...) this can hold more conditions that your usual if function. it also makes things easier to type and look at. Hope this helps! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
IF statement inside a SUMIF statement.... or alternative method | Excel Worksheet Functions | |||
Reconcile Bank statement & Credit card statement & accounting data | Excel Worksheet Functions | |||
Embedding an OR statement in an IF statement efficiently | Excel Discussion (Misc queries) | |||
Can an If statement answer an If statement? | Excel Discussion (Misc queries) | |||
appending and IF statement to an existing IF statement | Excel Worksheet Functions |