Ugly answer: in order to apply a limit to price fields you need to revert to the (almost) plain old SQL.
First a little background.
Product collections use pre-calculated values from the price index table catalog_product_index_price.
The index table gets joined in using the table alias price_index when addPriceData()is called on the collection.
Lets assume we have a product collection and a variable containing the lower price limit initialized as follows:
$lowerPriceLimit = 200;
/** @var $products Mage_Catalog_Model_Resource_Product_Collection */
$products = Mage::getModel('catalog/product')->getCollection()
->addAttributeToSelect('name');
You probably want to test against the field final_price because that is the value that will be used when a product is purchased (as compared to price, special_price or others).
This is an example how add the condition:
// Join the price_index table
$products->addPriceData();
// Apply price limit
$products->getSelect()->where('price_index.final_price >= ?', $lowerPriceLimit);
Here is an alternative. If you want to do it a little more the Magento way (that is use more complicated methods), use this:
$customerGroupId = Mage::getSingleton('customer/session')->getCustomerGroupId();
$websiteId = Mage::app()->getWebsite()->getId();
$products->joinField(
'filter_price', // field alias
'catalog/product_index_price', // table
'final_price', // real field name
'entity_id=entity_id', // primary condition
array( // additional conditions
'website_id' => $websiteId,
'customer_group_id' => $customerGroupId,
'final_price' => array('gteq' => $lowerPriceLimit)
)
);
If you also use addPriceData() in this second way you will end up with a double inner join on the price index, but it will still work...
All rather low level, but on the up side of things, at least this is still pretty standard compliant SQL, so it should be rather upward compatible, too.
Maybe you can combine this with the answer from Sylvain to make it part of the layered navigation price range filter.