Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
How to change the currency automatically for the entire dashboard if the region of the dashboard is different.
Or how can I change the currency for different user based on section access
Try like this:
Hi,
As Tresesco explained, confirm the currency types and use row level security of section access. Use the reduced currency field in the format of num fucntion.
HTH
hi tresesco,
thanks for the reply. I want to convert the whole data into other countries currency. Exchange rates are on daily basis. so if user 1 is US and user 2 is UK. user 2 should see all the region data in pounds. how can I achieve this? currently the data is US$.
Gautham.
load this Currency Exchange Table (US Dollar) - X-Rates into web file loader in QV and reload.. you will have a table
Add one more column to hold the conversion rate like:
And change the expression to like:
Num(Sum(Sales)*ConvRate,Currency &'#,##0.00;'&'Currency'&' -#,##0.00')
as conversion rate is not fixed and it changes everyday...still it work?
If you load the updated conversion rate daily, it works. ... Somewhere, you have to provide qv the data, otherwise qv is not that intelligent . If you wish to input the data at the front end, you can do that too. In that case, you have to store the input in a variable and use that variable in the expression. Hope that makes sense.