Forum Discussion
gomezc73
2 years agoHelper V
how filter the data based in 1 filter with multiple selection
Hi experts, I have the following slicer to select only 1 month, but now the users wants to select 1 or MORE months. Currently in my measure i have a the SUMX with the following Filter: ...
- Anonymous2 years ago
Hi gomezc73 ,
You may try the following expression
Filter(Sales,Sales[Year_Month] in values('Year_Month From'[Year_Month])Filter(Sales,Sales[Year_Month] in values('Year_Month To'[Year_Month])Hope it helps!
Best regards,
Community Support Team_ Scott ChangIf this post helps then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
2 years agoNot applicable
Hi gomezc73 ,
You may try the following expression
Filter(Sales,Sales[Year_Month] in values('Year_Month From'[Year_Month])
Filter(Sales,Sales[Year_Month] in values('Year_Month To'[Year_Month])
Hope it helps!
Best regards,
Community Support Team_ Scott Chang
If this post helps then please consider Accept it as the solution to help the other members find it more quickly.
- gomezc732 years agoHelper V
Worked perfect!!. thank you