We have requirement to allow user to choose which currency he wants to see in the dashboard, like below example:
By default, it's `GBP`, if user changes to `USD`, we need to show the spend by USD. Under the hood we already have table `InvoiceDetail` which contains columns doing currency conversion beforehand:
SpendInGBP
SpendInUSD
SpendInEUR
I am not sure how I can map when user chooses different currency using ChicletSlicer to different Columns. Anyone has solution for this problem