MrExcel Message Board


Go Back   MrExcel Message Board > Question Forums > Excel Questions

Excel Questions All Excel/VBA questions - formulas, macros, pivot tables, general help, etc. Please post to this forum in English only.

Reply
 
Thread Tools Display Modes
Old Mar 11th, 2002, 03:01 PM   #1
chezlinds
 
Join Date: Feb 2002
Posts: 40
Default

I have the following formula:

=IF(ISBLANK(A1),"",IF(OR(A1="a",A1 ="b",A1 = "c",A1 = "d", A1="e", A1="e", A1="f", A1="g", A1="h", A1="i")=TRUE, "PE", "DS"))

but I want to add more arguments to it, so that if A1= "z" the result will also be "PE". However, while this formula works fine as is, if I try to add arguments I get an error that makes me think I've reached the limits allowed. There must be a way! Can anyone help?

Thanks as always,
Lindsay
chezlinds is offline   Reply With Quote
Old Mar 11th, 2002, 03:17 PM   #2
Mark W.
MrExcel MVP
 
Join Date: Feb 2002
Location: Austin, Texas USA
Posts: 11,653
Default

If you want this to be a case sensitive comparison try...

=IF(ISBLANK(A1),"",IF(AND(LEN(A1)=1,ISNUMBER(FIND(A1,"abcdefghijklmnopqrstuvwxyz"))), "PE", "DS"))

...at any rate, this should be easier on the eyes .

[ This Message was edited by: Mark W. on 2002-03-11 10:19 ]
Mark W. is offline   Reply With Quote
Old Mar 11th, 2002, 03:18 PM   #3
Russell Hauf
MrExcel MVP
 
Russell Hauf's Avatar
 
Join Date: Feb 2002
Location: Portland, OR USA
Posts: 1,368
Default

Quote:
On 2002-03-11 10:01, chezlinds wrote:
I have the following formula:

=IF(ISBLANK(A1),"",IF(OR(A1="a",A1 ="b",A1 = "c",A1 = "d", A1="e", A1="e", A1="f", A1="g", A1="h", A1="i")=TRUE, "PE", "DS"))

but I want to add more arguments to it, so that if A1= "z" the result will also be "PE". However, while this formula works fine as is, if I try to add arguments I get an error that makes me think I've reached the limits allowed. There must be a way! Can anyone help?

Thanks as always,
Lindsay
You should use VLOOKUP. Make a list of your possible values something like:

a True
b True
c True
d True
q SomeValue
z SomeValue

Then use VLOOKUP to get your value.

=VLOOKUP(A1,$C$1:$D$10,2,FALSE)

where C1:D10 is the range where you entered your possible values.

Hope this helps,

Russell
Russell Hauf is offline   Reply With Quote
Old Mar 11th, 2002, 03:24 PM   #4
Aladin Akyurek
MrExcel MVP
 
Aladin Akyurek's Avatar
 
Join Date: Feb 2002
Location: The Hague
Posts: 40,668
Default

Quote:
On 2002-03-11 10:01, chezlinds wrote:
I have the following formula:

=IF(ISBLANK(A1),"",IF(OR(A1="a",A1 ="b",A1 = "c",A1 = "d", A1="e", A1="e", A1="f", A1="g", A1="h", A1="i")=TRUE, "PE", "DS"))

but I want to add more arguments to it, so that if A1= "z" the result will also be "PE". However, while this formula works fine as is, if I try to add arguments I get an error that makes me think I've reached the limits allowed. There must be a way! Can anyone help?

Thanks as always,
Lindsay
Lindsay,

A shorter version of your formula would be:

=IF(ISBLANK(A1),"",IF(OR(A1={"a","b","c","d","e","e","f","g","h","i"}), "PE", "DS"))

whose the {"a","b","c","d","e","e","f","g","h","i"} bit can be extended further. However, what follows is much shorter:

=IF(ISBLANK(A1),"",IF(AND(LEN(A1)=1,CODE(UPPER(A1))>64,CODE(UPPER(A1))<=90),"PE","DS"))

will result in PE if A1 houses a letter between A and Z inclusive and case-insensitive, otherwise in DS.

Addendum: Forgat to add the ISBLANK bit to the second formula.

Aladin

[ This Message was edited by: Aladin Akyurek on 2002-03-11 10:42 ]
Aladin Akyurek is offline   Reply With Quote
Old Mar 11th, 2002, 03:32 PM   #5
Mark W.
MrExcel MVP
 
Join Date: Feb 2002
Location: Austin, Texas USA
Posts: 11,653
Default

Quote:
=IF(AND(LEN(A1)=1,CODE(UPPER(A1))>64,CODE(UPPER(A1))<=90),"PE","DS")
Better, make that...

=IF(ISBLANK(A1),"",IF(AND(LEN(A1)=1,CODE(A1)>96,CODE(A1)<123),"PE","DS"))

...if case sensitivity is required.

[ This Message was edited by: Mark W. on 2002-03-11 10:35 ]
Mark W. is offline   Reply With Quote
Old Mar 11th, 2002, 03:38 PM   #6
Mark W.
MrExcel MVP
 
Join Date: Feb 2002
Location: Austin, Texas USA
Posts: 11,653
Default

Quote:
=IF(ISBLANK(A1),"",IF(OR(A1={"a","b","c","d","e","e","f","g","h","i"}), "PE", "DS"))

whose the {"a","b","c","d","e","e","f","g","h","i"} bit can be extended further.
If case sensitivity is required you could use this instead...

=IF(ISBLANK(A1),"",IF(OR(EXACT(A1,CHAR(ROW($97:$122)))), "PE", "DS"))


[ This Message was edited by: Mark W. on 2002-03-13 11:35 ]
Mark W. is offline   Reply With Quote
Old Mar 13th, 2002, 02:18 PM   #7
chezlinds
 
Join Date: Feb 2002
Posts: 40
Default

(I haven't been able to get back here for a couple of days...)

I guess I should be more specific -- the "a", "b", "c", etc. are actually names of vacation spots (not simple letters). Aladin's formula looks like just what I want, but I still can't get it to accept more than ten names of locations. The formula works fine for the first ten, but not any more. What am I doing wrong?

Lindsay

[ This Message was edited by: chezlinds on 2002-03-13 09:22 ]
chezlinds is offline   Reply With Quote
Old Mar 13th, 2002, 02:40 PM   #8
Aladin Akyurek
MrExcel MVP
 
Aladin Akyurek's Avatar
 
Join Date: Feb 2002
Location: The Hague
Posts: 40,668
Default

Quote:
On 2002-03-13 09:18, chezlinds wrote:
(I haven't been able to get back here for a couple of days...)

I guess I should be more specific -- the "a", "b", "c", etc. are actually names of vacation spots (not simple letters). Aladin's formula looks like just what I want, but I still can't get it to accept more than ten names of locations. The formula works fine for the first ten, but not any more. What am I doing wrong?

Lindsay

[ This Message was edited by: chezlinds on 2002-03-13 09:22 ]
Lindsay,

You mean this formula I guess:

=IF(ISBLANK(A1),"",IF(OR(A1={"a","b","c","d","e","e","f","g","h","i"}), "PE", "DS"))

If so, I propose a different, hassle-free approach.

Make a 1-column list of all your vacation spots in a separate sheet you could name Admin. Select all of the cells of this list, go to the Name Box on the Formula Bar, type VacSpots, and enter.

Now use the following formula instead:

=IF(ISBLANK(A1),"",IF(ISNUMBER(MATCH(A1,VacSpots,0)),"PE","DS"))

Aladin
Aladin Akyurek is offline   Reply With Quote
Old Mar 13th, 2002, 03:49 PM   #9
chezlinds
 
Join Date: Feb 2002
Posts: 40
Default

Aladin, forgive the cluelessness, but I don't see a "name box" on my toolbar, and I do have the formula toolbar up.

Lindsay
chezlinds is offline   Reply With Quote
Old Mar 13th, 2002, 03:54 PM   #10
Aladin Akyurek
MrExcel MVP
 
Aladin Akyurek's Avatar
 
Join Date: Feb 2002
Location: The Hague
Posts: 40,668
Default

Quote:
On 2002-03-13 10:49, chezlinds wrote:
Aladin, forgive the cluelessness, but I don't see a "name box" on my toolbar, and I do have the formula toolbar up.

Lindsay
Left most box on the Formula Bar in which you see cell addresses appear when you are in some cell.

Aladin
Aladin Akyurek is offline   Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On

Forum Jump


All times are GMT +1. The time now is 05:08 PM.


Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
All contents Copyright 1998-2009 by MrExcel Consulting.
diabetic desserts recipes recipes Diabetic Soups Holiday Pizza Recipes Popcorn Recipes Recipes For Microwave Pasta Recipes Casserole Recipes Chili Recipes Curry Recipes Crockpot Recipes Apples Recipes Bread Recipes Vegetarian Recipes Vegetable recipes Desserts Recipes Appetizers Ethnic Recipes Meat Dishes Barbecue Recipes Sauces Recipes Marinade Recipes Low Fat Recipes Frugal Gourmet Kitchen Classics Recipes On The Grill Cook Books Seafood Recipes Cajun Recipes Breads Low Fat Low Fat Breads Bread Machine Recipes Yeast Breads Quick Breads Fat Free Vegetarian Salad Recipes Eggplant Recipes Radish Recipes Tomato Recipes Jalapeno Recipes Potato Recipes Lettuce Recipes Cabbage Recipes Beans Ambrosia Recipes Biscotti Recipes Desserts Low Fat Cookie Recipes Cheesecake Recipes Cake Recipes Pie Recipes Muffin Recipes Custard Recipes Best Appetizers Appetizers Low Fat Salsa Recipes Dip Recipes International Recipes Afghan Recipes Alaska Recipes French Recipes German Recipes Greek Recipes Italian Recipes Spanish Recipes Thai Recipes Korean Recipes Chinese Recipes Mexican Recipes Indian Recipes Beef Recipes Pork Pork & Ham Pork Butts Pork Chop Recipes Pork Ribs Rulled Pork Poultry Recipes Stews Recipes Ground Beef Barbecue Grill Barbecue Smoker All Purpose Sauce BBQ Sauce Barbecue Sauce Carolina BBQ Sauce Pickle Recipes Marinades Smoking Low Fat Appetizers & Dips Low Fat Breakfast Low Fat Cakes Low Fat Cheesecakes Low Fat Cookies Low Fat Desserts Low Fat Fish & Seafood Low Fat Meats Low Fat Pasta Low Fat Pies Low Fat Salads Low Fat Sandwiches Low Fat Sauces & Condiments Low Fat Sides Low Fat Soups Low Fat Vegetarian Baker's Dozen Taste of Home Recipe Book Bon Appetit Cookbook Blacktie Cookbook Buster Cook Book Cookbook USA Cook Book Cook Book Sara's Cookbook Sara's Cookbook Appetizers and Dips Poultry recipes Diabetic recipes Holiday recipes Miscellaneous recipes 110 recipes 1986 Usenet cookbook 2900 recipes Cyberrealm recipes Great sysops of world Specialty recipes Ceideburg recipes Cheese recipes Chili recipes Fruits recipes Garlic recipes Great chefs of NY Londontowne recipes Raisins recipes Recipes for kids US Food Vegetarian recipes Bread recipes Drinks Meat Dishes Brisket recipes Caribou recipes Chicken recipes Filet mignons recipes Pork recipes Swordfish recipes Turkey recipes Pasta recipes Uncategorized recipes Ethnic recipes Canada recipes English recipes Ethiopia recipes Germany recipes Greece recipes Mexican recipes Philippines recipes Welsh recipes Microwave recipes Soups recipes Vegetable recipes Asparagus recipes Barley recipes Brown rice recipes Lentil recipes Mushrooms recipes Salads recipes Wild rice Desserts recipes Cakes recipes Chocolate recipes Cookies recipes Ice cream recipes