Currency conversion on Export [XML/PDF/Excel] doesnt show user's locally set currency as expected in any instances exports.Issue Exported currency is always showing in $ though the current displayed currency in user's session is in Euro. Even though the below properties were set as follow. glide.excel.fixed_currency_usd=falseglide.excel.convert_to_user_currency=trueglide.i18n.single_currency=false ReleaseAll the releases ResolutionCurrency name is taken from the fx_currency table and currency conversion will be done based on fx_rate.Conversion rates are stored in the fx_rate table. Each record contains the conversion rate from a given currency to the Euro. The rates are updated daily from the ECB website by a scheduled job called ECB Exchange Rate Load.A currency conversion from one currency to another involves two ratesRate to convert from the first currency to EuroRate to convert from Euro to the second currencyBelow properties will control the currency export. If the user wants to export all the currency values in $ then set the "glide.excel.fixed_currency_usd" to true. If the user wants the currency displayed in user session then set the glide.excel.convert_to_user_currency=true. Country code set on user profile will also having control on which currency is applicable while exporting the currency fields. If the user country code is set to "null" then exported currency filed will be set to default currency $. Inorder to export the currency field in other than $ then make sure that country code set in sys_user record is set to respective country code.