Skip to main content
June 30, 2023
Question

USD TO INR

  • June 30, 2023
  • 2 replies
  • 1 view

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 ?

2 replies

June 30, 2023

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 

June 30, 2023

I Got it .

Many thanks Prateeka.