Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 42
Default Multiple-Value formulas

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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,081
Default Multiple-Value formulas

=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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 698
Default Multiple-Value formulas

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

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 698
Default Multiple-Value formulas

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

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 42
Default Multiple-Value formulas

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



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 698
Default Multiple-Value formulas

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

  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 510
Default Multiple-Value formulas

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



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Formulas with multiple IFs Angie Excel Worksheet Functions 3 May 2nd 07 10:52 PM
Multiple if/then, OR formulas Ashley Excel Discussion (Misc queries) 10 October 2nd 06 06:35 PM
Sort multiple columns with multiple formulas without returning #R bellsjrb Excel Worksheet Functions 0 July 14th 06 10:01 AM
Multiple Formulas LCpl Shaw Excel Discussion (Misc queries) 1 October 4th 05 10:36 PM
Multiple Formulas Sharon Excel Discussion (Misc queries) 2 February 24th 05 12:49 AM


All times are GMT +1. The time now is 10:01 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"