You need to sign in to do that
Don't have an account?

To get the number of opportunities in an Account
Hi,
Is there any simple way to get the number of opportunities added to an account? Is count query available in SOQL?
Thanks and Regards
Hari G S
yes you can do that by using a simple count() query.
This is how it works :
Select count() From Opportunity Where AccountId ='some Account Id'