• Abhi Ray
  • NEWBIE
  • 0 Points
  • Member since 2014

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 0
    Replies
Hi All,

I am new to Flow Designer. Can you anyone tell if the following scenerio is possible using Flows?

- I have a custom object country mapping, it has 2 fields ISOCountryCode(picklist) and Currency(Picklist).
- On the Lead Object, there is also standard field such as CountryCode(Picklist) and CurrencyCode(Picklist)

- What I want to achieve anytime a lead is created. As soon as user select the country from the picklist, Country Code from Lead should match aganist the country code on custom object. Once matched, the Lead currency should pick the value from the CustomObject Currency Picklist field and auto-populate on lead. 

Logic:
Match (Lead.CountryCode) with (CustomObject.Country)
{
True
{
Picklist(Lead.Currency) = Picklist(CustomObject.Currency)
}
}

Can it be done without a trigger using Flows?

Thanks
Abhishek