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 Apr 11th, 2002, 11:58 PM   #1
rmtaylor
Board Regular
 
Join Date: Feb 2002
Location: Scotland
Posts: 139
Default

Help
I am attempting without success to set up a sheet that will pick out the highest letter from a row or array similar to the example below

A B C D E Answer = E
A B D Answer = D
A B D F G H Answer = H
I would appreciate any help on this problem
Robert
Scotland
rmtaylor is offline   Reply With Quote
Old Apr 12th, 2002, 12:10 AM   #2
Aladin Akyurek
MrExcel MVP
 
Aladin Akyurek's Avatar
 
Join Date: Feb 2002
Location: The Hague
Posts: 50,317
Default

Quote:
On 2002-04-11 22:58, rmtaylor wrote:
Help
I am attempting without success to set up a sheet that will pick out the highest letter from a row or array similar to the example below

A B C D E Answer = E
A B D Answer = D
A B D F G H Answer = H
I would appreciate any help on this problem
Robert
Scotland
Array-enter:

=CHAR(MAX(CODE(A2:E2)))

where each cell in A2:E2 houses a single letter.

In order to array-enter a formula, hit control+shift+enter at the same time, not just enter.
Aladin Akyurek is offline   Reply With Quote
Old Apr 12th, 2002, 12:58 AM   #3
rmtaylor
Board Regular
 
Join Date: Feb 2002
Location: Scotland
Posts: 139
Default

I attempted this by adding the formula to a sheet as a test as read no sucess???
rmtaylor is offline   Reply With Quote
Old Apr 12th, 2002, 01:11 AM   #4
rmtaylor
Board Regular
 
Join Date: Feb 2002
Location: Scotland
Posts: 139
Default

Quote:
On 2002-04-11 22:58, rmtaylor wrote:
Help
I am attempting without success to set up a sheet that will pick out the highest letter from a row similar to the example below

A B C D E Answer = E
A B D Answer = D
A B D F G H Answer = H
I would appreciate any help on this problem
Robert
Scotland
I attempted this by adding the formula to a sheet as a test as read no sucess???



[ This Message was edited by: rmtaylor on 2002-04-12 00:12 ]
rmtaylor is offline   Reply With Quote
Old Apr 12th, 2002, 02:31 AM   #5
Aladin Akyurek
MrExcel MVP
 
Aladin Akyurek's Avatar
 
Join Date: Feb 2002
Location: The Hague
Posts: 50,317
Default

Quote:
On 2002-04-12 00:11, rmtaylor wrote:
Quote:
On 2002-04-11 22:58, rmtaylor wrote:
Help
I am attempting without success to set up a sheet that will pick out the highest letter from a row similar to the example below

A B C D E Answer = E
A B D Answer = D
A B D F G H Answer = H
I would appreciate any help on this problem
Robert
Scotland
I attempted this by adding the formula to a sheet as a test as read no sucess???
[ This Message was edited by: rmtaylor on 2002-04-12 00:12 ]
What did you get? An error, #VALUE! maybe?

Aladin
Aladin Akyurek is offline   Reply With Quote
Old Apr 12th, 2002, 03:22 AM   #6
jimboy
Board Regular
 
Join Date: Apr 2002
Posts: 2,314
Default

OK, this is a long way around it...

If your text is in column 'A' and has 5 letters then in columns B,C,D,E & F enter;
=MID($B10,1,1)
=MID($B10,2,1)
=MID($B10,3,1)
=MID($B10,4,1)
=MID($B10,5,1)

Then in column G enter;
=IF(B1<>"",CODE(B1),1)
and fill right to column 'K'

then in column (L)enter;
=MAX(G1:K1)

Finally in column 'M' enter;
=CHAR(L1)
this will give you the highest letter...

jimboy is offline   Reply With Quote
Old Apr 12th, 2002, 03:54 AM   #7
Ian Mac
MrExcel MVP
 
Join Date: Feb 2002
Location: Newcastle, UK
Posts: 1,174
Default

Quote:
On 2002-04-12 02:22, jimboy wrote:
OK, this is a long way around it...

If your text is in column 'A' and has 5 letters then in columns B,C,D,E & F enter;
=MID($B10,1,1)
=MID($B10,2,1)
=MID($B10,3,1)
=MID($B10,4,1)
=MID($B10,5,1)

Then in column G enter;
=IF(B1<>"",CODE(B1),1)
and fill right to column 'K'

then in column (L)enter;
=MAX(G1:K1)

Finally in column 'M' enter;
=CHAR(L1)
this will give you the highest letter...

=CHAR(MAX(CODE(MID(A2,{1,2,3,4,5},1))))
will do the same job,
BUT I think the problem lies in the fact that if there is only 4 characters in the cell (or over 4 columns, as in Aladins answer), it will return #VALUE!.

I'm trying to figure a way round this, hang fire.
__________________
"Have a good time......all the time"
Ian Mac
Ian Mac is offline   Reply With Quote
Old Apr 12th, 2002, 04:06 AM   #8
Aladin Akyurek
MrExcel MVP
 
Aladin Akyurek's Avatar
 
Join Date: Feb 2002
Location: The Hague
Posts: 50,317
Default

Quote:
On 2002-04-12 02:54, Ian Mac wrote:
Quote:
On 2002-04-12 02:22, jimboy wrote:
OK, this is a long way around it...

If your text is in column 'A' and has 5 letters then in columns B,C,D,E & F enter;
=MID($B10,1,1)
=MID($B10,2,1)
=MID($B10,3,1)
=MID($B10,4,1)
=MID($B10,5,1)

Then in column G enter;
=IF(B1<>"",CODE(B1),1)
and fill right to column 'K'

then in column (L)enter;
=MAX(G1:K1)

Finally in column 'M' enter;
=CHAR(L1)
this will give you the highest letter...

=CHAR(MAX(CODE(MID(A2,{1,2,3,4,5},1))))
will do the same job,
BUT I think the problem lies in the fact that if there is only 4 characters in the cell (or over 4 columns, as in Aladins answer), it will return #VALUE!.

I'm trying to figure a way round this, hang fire.
Ian

I assumed a single letter per cell in my original reply and I said so. If it is just a string in a single cell and you want the "letter" with highest ASCII value, the following array-formula will do:

=CHAR(MAX(CODE(MID(A6,ROW(INDIRECT("1:"&LEN(A6))),1))))

Aladin
Aladin Akyurek is offline   Reply With Quote
Old Apr 12th, 2002, 04:22 AM   #9
Ian Mac
MrExcel MVP
 
Join Date: Feb 2002
Location: Newcastle, UK
Posts: 1,174
Default

Quote:
On 2002-04-12 03:06, Aladin Akyurek wrote:
Quote:
On 2002-04-12 02:54, Ian Mac wrote:
Quote:
On 2002-04-12 02:22, jimboy wrote:
OK, this is a long way around it...

If your text is in column 'A' and has 5 letters then in columns B,C,D,E & F enter;
=MID($B10,1,1)
=MID($B10,2,1)
=MID($B10,3,1)
=MID($B10,4,1)
=MID($B10,5,1)

Then in column G enter;
=IF(B1<>"",CODE(B1),1)
and fill right to column 'K'

then in column (L)enter;
=MAX(G1:K1)

Finally in column 'M' enter;
=CHAR(L1)
this will give you the highest letter...

=CHAR(MAX(CODE(MID(A2,{1,2,3,4,5},1))))
will do the same job,
BUT I think the problem lies in the fact that if there is only 4 characters in the cell (or over 4 columns, as in Aladins answer), it will return #VALUE!.

I'm trying to figure a way round this, hang fire.
Ian

I assumed a single letter per cell in my original reply and I said so. If it is just a string in a single cell and you want the "letter" with highest ASCII value, the following array-formula will do:

=CHAR(MAX(CODE(MID(A6,ROW(INDIRECT("1:"&LEN(A6))),1))))

Aladin
I also was considering them in single cell, I must admit I was playing with both idea and was getting close, alas! you've done it again.
What about the other 1 though (single cells!)

I've been trying to use INDIRECT() in the CODE() part:

=CHAR(MAX(CODE(INDIRECT(ADDRESS(ROW(A1),COLUMN(A1))&":"&ADDRESS(ROW(A1),COLUMN()-1)))))

is where I'm at. unfortunatly it doesn't work and I can't figure out why because if I use

=CHAR(MAX(CODE(INDIRECT(G2&":"&G3))))

where G2 houses

=ADDRESS(ROW(A1),COLUMN(A1))

and G3

=ADDRESS(ROW(A1),COLUMN()-1)

which I thought would be the same thing.

Any Ideas, is the INDIRECT having problems with the Array Formula entry?
__________________
"Have a good time......all the time"
Ian Mac
Ian Mac 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 -4. The time now is 06:14 AM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.
All contents Copyright 1998-2012 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