Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
ArquimedesP
Helper I
Helper I

Distincount wiht slicer

Hi guys, i have a two tables: 

 

Entradas (Which has "Año de Ingreso" Column)

Desembolsos (Which has "Nro_Operaciones" and "Año Desembolso" column)

 

I need a measure that do Distintcount of "Nro_Operaciones" base on a slicer "Año de Ingreso"

 

I did this measure: 

Operaciones Desembolsadas por Año =
VAR _A= SELECTEDVALUE(Entradas[Año Ingreso])
RETURN
CALCULATE(DISTINCTCOUNT(VW_BT_Desembolsos[Nro_Operacion]),FILTER(ALL(VW_BT_Desembolsos),VW_BT_Desembolsos[Año Desembolso]=_A))
 
It works well if I select only one year in my slicer, but when i have two years selected or none the result is blank.
 
What am i missing??
 
Thansk!
1 ACCEPTED SOLUTION
ArquimedesP
Helper I
Helper I

I found the reason, Measure will be: 

 

Operaciones Desembolsadas por Año =
VAR _A= VALUES(Entradas[Año Ingreso])
RETURN
CALCULATE(DISTINCTCOUNT(VW_BT_Desembolsos[Nro_Operacion]),FILTER(ALL(VW_BT_Desembolsos),VW_BT_Desembolsos[Año Desembolso]IN _A))

View solution in original post

1 REPLY 1
ArquimedesP
Helper I
Helper I

I found the reason, Measure will be: 

 

Operaciones Desembolsadas por Año =
VAR _A= VALUES(Entradas[Año Ingreso])
RETURN
CALCULATE(DISTINCTCOUNT(VW_BT_Desembolsos[Nro_Operacion]),FILTER(ALL(VW_BT_Desembolsos),VW_BT_Desembolsos[Año Desembolso]IN _A))

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.