Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

Total For Multiplication Not Showing

Hi

 

I have a data model that is not showing the Sigma symbol because I have connected this to the Tabular Editor.

 

Therefore, when I add the below measure to the matrix visual and select USD (<> LC) from the slicer, I don't see the total value of this column/measure. However, when I select LC from the slicer, the total does appear.

 

Do you know how to make it work also for USD slicer (_gross*_lc_fx)?

 

Here is my measure:

Invoice Gross Amount = 
VAR _entity = selectedvalue('BDR_Dataset'[HFM_Entity])
VAR _lc_fx = lookupvalue(Entity_Currency[LC/USD],Entity_Currency[HFM_Entity],_entity)
VAR _gross = calculate(sum(BDR_Dataset[Amount incl VAT]))
RETURN
if(selectedvalue('Currency Selection'[Currency])="LC",
_gross,
_gross*_lc_fx)

 

3 Replies