Salesforce sales report by accounts by quarters
SELECT a."Name" 'Account Name',
SUM(case when (o."FiscalQuarter"=1 and o."FiscalYear"=strftime('%Y','now')) then o."Amount" else 0 end) 'Q1 Amount',
SUM(case when (o."FiscalQuarter"=2 and o."FiscalYear"=strftime('%Y','now')) then o."Amount" else 0 end) 'Q2 Amount',
SUM(case when (o."FiscalQuarter"=3 and o."FiscalYear"=strftime('%Y','now')) then o."Amount" else 0 end) 'Q3 Amount',
SUM(case when (o."FiscalQuarter"=4 and o."FiscalYear"=strftime('%Y','now')) then o."Amount" else 0 end) 'Q4 Amount',
SUM(case when (o."FiscalYear"=strftime('%Y','now')) then o."Amount" else 0 end) 'Q1-Q4 Amount SUM'
FROM "Opportunity" o, "Account" a
WHERE o."IsWon"=true AND
o."IsClosed"=true AND
o."AccountId"= a."Id"
GROUP BY o."AccountId"
ORDER BY SUM(o."Amount") DESC
Learn how to export Salesforce sales report by accounts by quarters using Skyvia Query - online SQL query builder
Run This and Other Queries Online in Skyvia Query
Skyvia Query allows you to run SQL queries against databases and cloud applications from web browser. Access and manage your data from anywhere, build reports, arrange your data in the most informative way and simplify your decision-making process easily!
Key Features
- Ability to use SQL against cloud data
- Visual query builder
- Data export
- Five free queries per day
Frequently Asked Questions
What can I use gallery queries for?
Our pre-built queries helps you quickly analyze and report on your data without building a query from scratch or perform DML operations and mass data updates.
Which data sources can I run queries on?
Skyvia Query supports cloud apps, databases, and other connected data sources available in Skyvia.
Can I get query results to a spreadsheet?
Yes. You can use Skyvia Query Google Sheets Add-on or Excel Add-in to query data directly to your workbooks. Alternatively, you can export the results of any query to CSV.
Do I need advanced SQL knowledge to use prebuilt queries?
No. Prebuilt queries can be used as ready-made examples and adjusted if needed.