Query to get the UserCount for each Locale #inSalesforce

Query to get the UserCount for each Locale #inSalesforce


SELECT toLabel(LocaleSidKey) LocaleName, LocaleSidKey, Count(id) UserCount FROM User where IsActive=true GROUP BY LocaleSidKey

Comments