Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Hi...
I need to find out the correct way to complete the formula below based on the input of the user in a slicer that filters a collumn: "Tabela_Ações"[Módulo].
Actions Overdue =
COUNTROWS (
FILTER (
'Tabela_Ações',
'Tabela_Ações'[Data do Evento] < tb_Acompanhamento_Semanal[Data]
&& 'Tabela_Ações'[Status 90D Criteria] = "Open Overdue"
&& 'Tabela_Ações'[Módulo] = VALUEOFTHESELECTEDSLICER
)
)
Any way to solve this? Tables are not related. In my mind it should be simple, but I have tried different solutions no results so far.
Thank you @TomMartens for your prompt reply.
Hi @areias_br ,
Depending on the information you have provided, would you be able to provide more data (without private information) so that we can better understand and solve the problem you are experiencing.
How to Get Your Question Answered Quickly - Microsoft Fabric Community
If it does not help, please provide more details with your desired out put and pbix file without privacy information.
Best Regards,
Ada Wang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.3
Hey @areias_br,
I recommend this approach:
Actions Overdue =
var valuesfromslicer = values( 'Tabela_Ações'[Módulo] )
return
COUNTROWS (
FILTER (
'Tabela_Ações',
'Tabela_Ações'[Data do Evento] < tb_Acompanhamento_Semanal[Data]
&& 'Tabela_Ações'[Status 90D Criteria] = "Open Overdue"
&& 'Tabela_Ações'[Módulo] IN valuesfromslicer
)
)
If you are using IN instead of = it will become possible to process a multiselection in the measure.
If you do not want use multiselect you can use the below approach, but then you might consider to provide a default value:
Actions Overdue =
var slicervalue = SELECTEDVALUE( 'Tabela_Ações'[Módulo] , "defaultvalue" )
return
COUNTROWS (
FILTER (
'Tabela_Ações',
'Tabela_Ações'[Data do Evento] < tb_Acompanhamento_Semanal[Data]
&& 'Tabela_Ações'[Status 90D Criteria] = "Open Overdue"
&& 'Tabela_Ações'[Módulo] = slicervalue
)
)
Hopefully this provides what you are looking for.
Regards,
Tom
Hi,
It didn't work 😞
When I click the slicer the values of the graph don't change.
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 27 | |
| 23 | |
| 18 | |
| 18 | |
| 15 |
| User | Count |
|---|---|
| 54 | |
| 44 | |
| 42 | |
| 39 | |
| 36 |