Hi,
I have several tenants with different currency preferences.
How I can set up some preferences for report viewer on runtime to use them for currency formatting without amending the report "text format" properties?
Have a great day.
Currency formatting
Re: Currency formatting
Hello.
You can create a variable where you can set the currency symbol and use one of next expression:
The Text format property should be set to General.
Thank you.
You can create a variable where you can set the currency symbol and use one of next expression:
Code: Select all
{DataSource.CurrencyColumn.ToString("N2") + " " + VarCurrency}
{VarCurrency + DataSource.CurrencyColumn.ToString("N2")}
Thank you.
Re: Currency formatting
Hi,
Can I use "Use Local Settings" by chance. I know current user preferences at runtime and can (possibly) "fix" local settings for report.
Is it possible?
Thank you.
Can I use "Use Local Settings" by chance. I know current user preferences at runtime and can (possibly) "fix" local settings for report.
Is it possible?
Thank you.
Re: Currency formatting
Hello.
Thank you.
Unfortunately, this Settings doesn't work in the Flash Designer, because Flash player have no access to the local settings.Chipo wrote:Can I use "Use Local Settings" by chance. I know current user preferences at runtime and can (possibly) "fix" local settings for report.
Is it possible?
Thank you.