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

Get certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now

Reply
Syndicate_Admin
Administrator
Administrator

Mostrar valores 0 en el objeto visual del embudo sin ignorar los filtros

Hola

Me encontré con un problema con la imagen del embudo. Utilizo un objeto visual de embudo para 3 embudos diferentes y un elemento de segmentación le permite seleccionar cuál de los tres embudos es visible. De forma predeterminada, el objeto visual del embudo no muestra valores 0, lo que lo hace incompleto.

En la configuración, hay una función para mostrar los valores 0, pero cuando elijo esa opción, también muestra los valores 0 de los otros 2 embudos que no están seleccionados en el elemento slicer.

¿Alguien sabe cómo mostrar valores 0 sin ignorar el filtrado establecido?

2 REPLIES 2
Syndicate_Admin
Administrator
Administrator

@BBConsultancy , hemos probado una medida como

0 entre rangos
Medida = var _1= SUMA(Oportunidad[Recuento de oportunidades]) +0
var _min = minx(ALLSELECTED('Calendario'), 'Calendario'[Fecha])
var _max = maxx(ALLSELECTED('Calendario'), 'Calendario'[Fecha])
devolución
CALCULATE(if(max('Calendario'[Fecha]) <_min || max('Calendario'[Fecha]) >_max , BLANK(), _1))

o


Medida = var _1= SUMA(Oportunidad[Recuento de oportunidades]) +0
var _tab = valores(Categoría[Categoría])
devolución
CALCULATE(if(max(Category[Category]) in _tab || max('Calendar'[Date]) >_max , BLANK(), _1))

Hola

Gracias por la respuesta. Ambas opciones también muestran valores 0 de los otros 2 embudos que no están seleccionados en el elemento de segmentación.

Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

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

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

Check out the November 2024 Power BI update to learn about new features.

Top Solution Authors