How to count no of users having Allow Forecasting enabled in Salesforce?

How to count no of users having Allow Forecasting enabled in Salesforce?

ForecastEnabled is used in the User object to enable Allow Forecasting check box.

SOQL:


SELECT COUNT ( Id ) FROM User WHERE IsActive = true AND ForecastEnabled = true  

Leave a Reply