![]() |
![]() |
|
|||||||
| Excel Questions All Excel/VBA questions - formulas, macros, pivot tables, general help, etc. Please post to this forum in English only. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
Board Regular
Join Date: Feb 2002
Location: Scotland
Posts: 139
|
I think I have confused the power users with the wording on my previous question. I was attempting to get my sheet to show the last letter entered in a row (there will only be "one letter" in any given cell at any time ) say from row A2: AA2 as follows,
ROW A2:AA2= A B C D E F G H I G K L M N O P Q U R S T V W X Y Z ANSWER IN AA2 WOULD = Z ROW A2:AA25= A B C D E F G H I G ANSWER IN AA26 WOULD = G and so on. The purpose of the sheet is to keep track of the many updates to the many drawings in our office at a glance in one column without having to scroll through a large list that is 24 cells wide some being updated only twice (C) and others at update Y at times. [ This Message was edited by: rmtaylor on 2002-04-12 14:20 ] [ This Message was edited by: rmtaylor on 2002-04-12 14:36 ] [ This Message was edited by: rmtaylor on 2002-04-12 14:38 ] |
|
|
|
|
|
#2 |
|
New Member
Join Date: Mar 2002
Posts: 33
|
in a26 type =char(max(code(a1:a25))) and INSTEAD of pressing enter, hit shift-ctrl-enter. this will place brackets around the formula. adjust as needed. the formula will display the highest letter.
|
|
|
|
|
|
#3 | |
|
MrExcel MVP
Join Date: Feb 2002
Location: The Hague
Posts: 50,319
|
Quote:
Just use: =INDEX(A2:A25,MATCH(REPT("z",15),A2:A25)) =INDEX(B2:B25,MATCH(REPT("z",15),B2:B25)) These formulas will also work for data arranged columnwise, that is, in a row. Just adjust to suit. Aladin [ This Message was edited by: Aladin Akyurek on 2002-04-12 14:44 ] [ This Message was edited by: Aladin Akyurek on 2002-04-12 14:45 ] [ This Message was edited by: Aladin Akyurek on 2002-04-12 14:58 ] |
|
|
|
|
|
|
#4 |
|
New Member
Join Date: Mar 2002
Location: Northern Ireland
Posts: 6
|
Another option isto paste this formula in cell A26 and drag it to cell B26
it does not need to be aray entered. It will not work if you have blank cells between data entered. =INDIRECT(ADDRESS(COUNTA(A2:A25)+1,COLUMN(),1,1)) HTH |
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|