Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Range: Column I2:I2000
My formula in Column H: =IF(I2="DM","Credit","System") The formula is working fine with a single criteria, being DM (Returning Credit if TRUE or "System" if FALSE) I am trying to use multiple criteria in this formula: DM,EF,LM,ME,NK i.e.: =IF(I2=DM,EF,LM,ME,NK ,Credit","System") Result: Formula error Is there another formula that I can use? EricB |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=IF(OR(I2=DM,I2=EF,I2=LM,I2=M E,I2=NK),Credit","System")
"EricB" wrote: Range: Column I2:I2000 My formula in Column H: =IF(I2="DM","Credit","System") The formula is working fine with a single criteria, being DM (Returning Credit if TRUE or "System" if FALSE) I am trying to use multiple criteria in this formula: DM,EF,LM,ME,NK i.e.: =IF(I2=DM,EF,LM,ME,NK ,Credit","System") Result: Formula error Is there another formula that I can use? EricB |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi
=IF(ISNA(MATCH(I2,{"DM";"EF";"LM";"ME";"NK"},0))," System","Credit") -- Arvi Laanemets ( My real mail address: arvi.laanemets<attarkon.ee ) "EricB" wrote in message ... Range: Column I2:I2000 My formula in Column H: =IF(I2="DM","Credit","System") The formula is working fine with a single criteria, being DM (Returning Credit if TRUE or "System" if FALSE) I am trying to use multiple criteria in this formula: DM,EF,LM,ME,NK i.e.: =IF(I2=DM,EF,LM,ME,NK,Credit","System") Result: Formula error Is there another formula that I can use? EricB |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try this:
=IF(OR(I2={"DM","EF","LM","ME","NK"}),"Credit","Sy stem") Does that help? *********** Regards, Ron XL2002, WinXP "Duke Carey" wrote: =IF(OR(I2=DM,I2=EF,I2=LM,I2=M E,I2=NK),Credit","System") "EricB" wrote: Range: Column I2:I2000 My formula in Column H: =IF(I2="DM","Credit","System") The formula is working fine with a single criteria, being DM (Returning Credit if TRUE or "System" if FALSE) I am trying to use multiple criteria in this formula: DM,EF,LM,ME,NK i.e.: =IF(I2=DM,EF,LM,ME,NK ,Credit","System") Result: Formula error Is there another formula that I can use? EricB |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Sorry, Duke.....I thought I clicked on the EricB's post. : \
*********** Regards, Ron XL2002, WinXP "Ron Coderre" wrote: Try this: =IF(OR(I2={"DM","EF","LM","ME","NK"}),"Credit","Sy stem") Does that help? *********** Regards, Ron XL2002, WinXP "Duke Carey" wrote: =IF(OR(I2=DM,I2=EF,I2=LM,I2=M E,I2=NK),Credit","System") "EricB" wrote: Range: Column I2:I2000 My formula in Column H: =IF(I2="DM","Credit","System") The formula is working fine with a single criteria, being DM (Returning Credit if TRUE or "System" if FALSE) I am trying to use multiple criteria in this formula: DM,EF,LM,ME,NK i.e.: =IF(I2=DM,EF,LM,ME,NK ,Credit","System") Result: Formula error Is there another formula that I can use? EricB |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi Ron
Great, working 100% Much appreciated EricB ================= "Ron Coderre" wrote: Try this: =IF(OR(I2={"DM","EF","LM","ME","NK"}),"Credit","Sy stem") Does that help? *********** Regards, Ron XL2002, WinXP "Duke Carey" wrote: =IF(OR(I2=DM,I2=EF,I2=LM,I2=M E,I2=NK),Credit","System") "EricB" wrote: Range: Column I2:I2000 My formula in Column H: =IF(I2="DM","Credit","System") The formula is working fine with a single criteria, being DM (Returning Credit if TRUE or "System" if FALSE) I am trying to use multiple criteria in this formula: DM,EF,LM,ME,NK i.e.: =IF(I2=DM,EF,LM,ME,NK ,Credit","System") Result: Formula error Is there another formula that I can use? EricB |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I'm glad I could help......Thanks for the feedback.
*********** Regards, Ron XL2002, WinXP "EricB" wrote: Hi Ron Great, working 100% Much appreciated EricB ================= "Ron Coderre" wrote: Try this: =IF(OR(I2={"DM","EF","LM","ME","NK"}),"Credit","Sy stem") Does that help? *********** Regards, Ron XL2002, WinXP "Duke Carey" wrote: =IF(OR(I2=DM,I2=EF,I2=LM,I2=M E,I2=NK),Credit","System") "EricB" wrote: Range: Column I2:I2000 My formula in Column H: =IF(I2="DM","Credit","System") The formula is working fine with a single criteria, being DM (Returning Credit if TRUE or "System" if FALSE) I am trying to use multiple criteria in this formula: DM,EF,LM,ME,NK i.e.: =IF(I2=DM,EF,LM,ME,NK ,Credit","System") Result: Formula error Is there another formula that I can use? EricB |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Formulas with multiple IFs | Excel Worksheet Functions | |||
Multiple if/then, OR formulas | Excel Discussion (Misc queries) | |||
Sort multiple columns with multiple formulas without returning #R | Excel Worksheet Functions | |||
Multiple Formulas | Excel Discussion (Misc queries) | |||
Multiple Formulas | Excel Discussion (Misc queries) |