In my file, the $ranking of each product is an integer numeric value derived from a particular formula.
$productCollection = Mage::getModel('catalog/product') ->getCollection(); foreach($productCollection as $product){ $ranking = formula; //integer numeric value } I want to sort the products according to the $ranking.
What should I do?
$productCollection->addAttributeToSort('ranking', 'desc');