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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

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
September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.