Forum Discussion
Filtering down to one record with DAX
- 6 years ago
You may also modify the measure like below:
gl = CALCULATE ( LASTDATE ( 'Facts'[PeriodID] ); FILTER ( 'Facts'; 'Facts'[column1] = "value1" && 'Facts'[column2] = "valuex" && 'Facts'[column3] = "valuey" ) )If you still have other issues, please share some sample data and give the expected result.
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
You may also modify the measure like below:
gl =
CALCULATE (
LASTDATE ( 'Facts'[PeriodID] );
FILTER (
'Facts';
'Facts'[column1] = "value1"
&& 'Facts'[column2] = "valuex"
&& 'Facts'[column3] = "valuey"
)
)
If you still have other issues, please share some sample data and give the expected result.
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thanks that really helped me to apply multiple filters with the "&&".
One last problem that I have is, that I need one measure not to be affected by a slicer.
I tried the all-Function like this: