I would like to extract and count distinct values from a range and sort by the Pareto. If I were using a DB this would be easy.
Select column2, column3, count(column3) from table where some criteria order by count(column3)
Is there a way to do this in Excel without macro’s? If not, I can write the macro.
Thanks.