function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
peteppetep 

Pulling Data from Opportunity to Lead

Hi,

 

We upload leads for different departments: Sales or Marketing

 

I need to indicate which leads are more relevant to the respective department.

 

- I created a multiple picklist in Campaigns:  Sales or Marketing

 

- I want to pull the values in each campaign when a sales rep looks at the Leads object.

 

- I'll create a specific list view for the  Sales or Marketing Departments.

 

 

====

 

I'm having trouble with pulling the values from Campaign Object to the Lead Object.

 

This is what I've done so far:

 

Lead Validation Rule

 Campaign.Department__c 

 

What's the formula to pull the data from Campaigns?

 

Thanks.

 

Best Answer chosen by Admin (Salesforce Developers) 
jkucerajkucera

You can't populate campaign info on Lead without code becuase you can put a lead into multiple campaigns (there's no way for the system to know which campaign you want).

 

If you had some logic you wanted to use like Last Campaign's Name, you could create a trigger to populate that info onto Lead.