hi all...
how to make alphabetic series (sort asc -desc) with automatically update when added data..
i don't want without use macro/vba
please, check attachement file...
any help is greatly appreciated..
john m
hi all...
how to make alphabetic series (sort asc -desc) with automatically update when added data..
i don't want without use macro/vba
please, check attachement file...
any help is greatly appreciated..
john m
in G5
=COUNTIF($E$5:$E$11,">"&E5)+1
in H5
=INDEX($E$5:$E$11,MATCH(LARGE($G$5:$G$11,ROWS($1:1)),$G$5:$G$11,0))
copy both down
Try this
Enter in F5 and copy down
Formula:
Please Login or Register to view this content.
If you like my answer please click on * Add Reputation
Don't forget to mark threads as "Solved" if your problem has been resolved
"Nothing is so firmly believed as what we least know."
--Michel de Montaigne
Create a named range "List" (to cope with additional text items):
=Sheet1!$E$5:INDEX(Sheet1!$E$5:$E$1000,COUNTA(Sheet1!$E$5:$E$1000))
Then use this array formula in F6, copoed down:
=IFERROR(INDEX(List,MATCH(SMALL(COUNTIF(List,"<"&List),ROWS($F$4:F4)),COUNTIF(List,"<"&List),0)),"")
Array Formulae are a little different from ordinary formulae in that they MUST be confirmed in the FIRST CELL ONLY by pressing CTRL+SHIFT+ENTER to activate the array, not just ENTER. After that, the array can be dragged down as normal, to cover the desired range.
You will know the array is active when you see curly brackets { } - or "curly braces" for those of you in the USA, or "flower brackets" for those of you in India - appear around the outside of your formula. If you do not use CTRL+SHIFT+ENTER you will (almost always) get an error message or an incorrect answer. Press F2 on that cell and try again.
Don't type the curly brackets yourself - it won't work...
Glenn
None of us get paid for helping you... we do this for fun. So DON'T FORGET to say "Thank You" to all who have freely given some of their time to help YOU
hi guys...
you're both ...great!! worked it..
Having seen Alkey's formula, I'd use my Named range and this variant of his formula:
=LOOKUP(1,0/FREQUENCY(ROWS(E$5:E5),COUNTIF(List,"<="&List)),List)&""
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks