Forum Discussion
arcegabriel
Helper I
5 years agoProblems using SELECTEDVALUE in DAX
I am having an issue using selectedvalue function from a slicer. Table name is RegionTable Region field contains US, Canada, EMEA, APAC This table is used as a slicer I want to assign an a...
- 5 years ago
arcegabriel In theory something along the lines of:
OriginitatingRegionFlag = IF(MAX('Table'[OriginatingRegion]) = SELECTEDVALUE('Table1'[OriginatingRegion]),25,10) DestinationRegionFlag = IF(MAX('Table'[DestinationRegion]) = SELECTEDVALUE('Table1'[OriginatingRegion]),25,10)
arcegabriel
Helper I
5 years agoThanks I understand but terribly lost on how to do that with measures.
Appreciate any suggestions or a nudge on the right direction
ryan_mayu
Super User
5 years agocould you pls provide the sample data and expected output?