Play Games

Search This Blog

Sunday, May 22, 2022

determine whether a lead is converted or not in salesforce - SalesforceGlobe4U

determine whether a lead is converted or not in salesforce - SalesforceGlobe4U

Solution: Use IsConverted field in the Lead object to check if a lead is converted or not in SOQL Query

Example:

select id,IsConverted from Lead where id=:leadid //leadid is the lead record id

Output:



No comments:

Post a Comment