USD TO INR

Certified Senior Developer

Hi, is there any function which convert USD OR POUND into  INR

I have to convert 

USD 30,872.11 and  €30,089.46  into INR

how can i convert ?

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Senior Developer

    Hi Sudhir I am not aware of a function like that in Appian. For conversion it is best to use a web API as the currency change constantly. 

    a!localVariables(
    local!dollarToInr: 82.4*ri!value,
    local!euroToInr: 89.22*ri!value,
    a!currency(
    isoCode: "INR",
    value: {local!euroToInr,local!dollarToInr}
    )
    )

    You have to replace the hardcoded values with API real time data to get the Realtime result 

Reply
  • 0
    Certified Senior Developer

    Hi Sudhir I am not aware of a function like that in Appian. For conversion it is best to use a web API as the currency change constantly. 

    a!localVariables(
    local!dollarToInr: 82.4*ri!value,
    local!euroToInr: 89.22*ri!value,
    a!currency(
    isoCode: "INR",
    value: {local!euroToInr,local!dollarToInr}
    )
    )

    You have to replace the hardcoded values with API real time data to get the Realtime result 

Children