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 nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. 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.
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 23 | |
| 23 | |
| 20 | |
| 18 | |
| 14 |
| User | Count |
|---|---|
| 58 | |
| 51 | |
| 41 | |
| 30 | |
| 24 |