• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

For Countif (Reverse Order)

jskushawah

New Member
https://www.dropbox.com/s/2d600mioe01s9f6/countif.xlsx

in the above file, I applied countif, which result is 10,9,8,7,6,5,4,3,2,1,0


how can i get result in reveres order i.e. 0,1,2,3,4,5,6,7,8,9,10 ...
 
Jskushawah


This will do it in B1:

Code:
=COUNTIF($A$1:A1,$C$1)


But I would use:

=IF($C$1=A1,COUNTIF($A$1:A1,$C$1),"")


Copy down
 
Back
Top