SOLVED

Mapping a lead field value to another

Go to solution
Anonymous
Not applicable

Mapping a lead field value to another

I'm trying to populate Inferred Country values in cases where Country is blank. I don't seem to be able to do this through a smart campaign. What's the way to do this?
Tags (1)
1 ACCEPTED SOLUTION

Accepted Solutions
Anonymous
Not applicable

Re: Mapping a lead field value to another

Flow
IF Country IS Empty
Attribute Country  New Value {{lead.Inferred Country}}

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

Re: Mapping a lead field value to another

The inferred fields are populated by the system's JavaScript. Those fields are not user-editable.
Anonymous
Not applicable

Re: Mapping a lead field value to another

Thanks for your reply. I meant that I'm trying to run the smart campaign operation -- If Country is Blank, then set Country = Inferred Country.
Anonymous
Not applicable

Re: Mapping a lead field value to another

Flow
IF Country IS Empty
Attribute Country  New Value {{lead.Inferred Country}}

Anonymous
Not applicable

Re: Mapping a lead field value to another

thank you very much.