Currency Conversion Quick Focus _______________________________ Please note that this is not for production, but for training purposes. _______________________________ https://freecurrencyapi.net/api/v2/ https://freecurrencyapi.net/api/v2/latest? https://freecurrencyapi.net/api/v2/latest?apikey=YOURKEYHERE&base_currency=GBP VBScript Step ______________ ExchangeRate = Variables("dollarConversion") ExampleValue = Variables("examplevalue") CalculatedValue = Variables("examplevalue") * Variables("dollarConversion") RoundedValue = FormatNumber(CalculatedValue,2) Variables("varOutput") = "Example Value is: £" & ExampleValue & " Multiplied by current exchange rate GBP to USD " & "(" & ExchangeRate & ")" & " = $" & RoundedValue