+ Start a Discussion
Bodhtree1Bodhtree1 

How to write a SOQL Query which gets all the Activities in a particular month?

How to write a SOQL Query which gets all the Activities in a particular month?

Pradeep_NavatarPradeep_Navatar

Try this query as SELECT AccountId, ActivityDate FROM Event where CALENDAR_MONTH(ActivityDate) = 5.

 

Did this answer your question? if so, please mark it solved.