SOLVED

Re: I want the Inferred Country Field populated into the Country Field, what is the process?

Go to solution
Anonymous
Not applicable

I want the Inferred Country Field populated into the Country Field, what is the process?

I am trying to create a campaign/flow where if any net new lead comes into marketo and country is blank, but inferred country is not empty, fill the inferred country into country field. What is the best way to go about this?

Tags (1)
1 ACCEPTED SOLUTION

Accepted Solutions
Anonymous
Not applicable

Re: I want the Inferred Country Field populated into the Country Field, what is the process?

<REVISED>
I would create this under your data management or oppperational programs and do the following:

Smart List:

Lead is created (trigger)
Country is (empty)
Inferred Country not empty

Flow:

change data value - field = country
new value = {{lead.Inferred Country}}

View solution in original post

3 REPLIES 3
Conor_Fitzpatri
Level 6

Re: I want the Inferred Country Field populated into the Country Field, what is the process?

I'd do something like this:

Smart List

Inferred Country is not empty
Country is empty

Flow

Change Data Value - Country: New Value is {{lead.Inferred Country}}

Set Recurrence to run once per day
Anonymous
Not applicable

Re: I want the Inferred Country Field populated into the Country Field, what is the process?

<REVISED>
I would create this under your data management or oppperational programs and do the following:

Smart List:

Lead is created (trigger)
Country is (empty)
Inferred Country not empty

Flow:

change data value - field = country
new value = {{lead.Inferred Country}}
Anonymous
Not applicable

Re: I want the Inferred Country Field populated into the Country Field, what is the process?

Thank you Conor and Sierra.