• piya_ton
  • NEWBIE
  • 0 Points
  • Member since 2011

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

I would like to convert the amount from USD to local currency if the opportunity stage is closed won.

 

The following website which I would like to connect with, http://www.webservicex.net/CurrencyConvertor.asmx?op=ConversionRate, how can I connect to the website.

 

I am quite new for developer. Here is the code when I tried:

 

trigger CurrencyConversion on Opportunity (after update) {
    if(opp.StageName == 'Closed Won')
    {
       
    }
}

 

Thanks,

Tony

I would like to convert the amount from USD to local currency if the opportunity stage is closed won.

 

The following website which I would like to connect with, http://www.webservicex.net/CurrencyConvertor.asmx?op=ConversionRate, how can I connect to the website.

 

I am quite new for developer. Here is the code when I tried:

 

trigger CurrencyConversion on Opportunity (after update) {
    if(opp.StageName == 'Closed Won')
    {
       
    }
}

 

Thanks,

Tony