Forum Discussion
Anonymous
7 years agoNot applicable
help with slicer selector
I create a table to be a slicer for select currency in my matrix all working good using this code Measure-Total2 = IF ( SELECTEDVALUE ( CurrencySelector[value] ) = "Local Currency", SUMX...
- 7 years ago
Anonymous,
Try to add an OR condition.
FILTER ( 'UploadAccountsCurrentyPeriod', UploadAccountsCurrentyPeriod[Currency selector] = "Local currency" || UploadAccountsCurrentyPeriod[Currency selector] = "dkk" )
v-chuncz-msft
Community Support
7 years agoAnonymous,
Try to add an OR condition.
FILTER (
'UploadAccountsCurrentyPeriod',
UploadAccountsCurrentyPeriod[Currency selector] = "Local currency"
|| UploadAccountsCurrentyPeriod[Currency selector] = "dkk"
)