Forum Discussion
thliberato
Helper I
9 years agoValue selected in the filter
How do I get a value selected in the filter to use in a measure ? For Example. I create a filter with myoptions. I created a measure named Test (I know that this sintax is wrong). Test = ...
JaimeG
9 years agoNew Member
you can try this
Measure = CALCULATE(SUM(Table[Fieldvalue]);FILTER(Table;Table[FieldOption]="Option 1"))
you can use SUM, COUNT, and any agregate function