User Story
As a sales manager, I want to track the progress of Opportunities in our pipeline so that I can identify potential roadblocks and allocate resources more effectively. Using the "Opportunity Pipeline Report" feature, I can retrieve a list of Opportunities that are currently open and sorted by their StageName and ExpectedRevenue. This will allow me to quickly identify Opportunities that are at risk of stalling or require additional attention.
SOQL
SELECT Id, Name, StageName, ExpectedRevenue
FROM Opportunity
WHERE IsClosed = false
ORDER BY StageName ASC, ExpectedRevenue DESC
Video
Video does not exists.