Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
Así que quiero usar la función de cálculo, pero realmente estoy luchando para conseguir que funcione en este caso. A partir de la siguiente tabla, quiero identificar el número único de clientes cuya suma de cantidades de un determinado producto llega a cero.
De la siguiente tabla como ejemplo, la fórmula DAX debe volver con 3 clientes porque no compraron un producto en particular de Range 2. Espero que tenga sentido, todas ayudan muy apreciadas.
Solved! Go to Solution.
Hola @Amos1992 ,
Pruebe la siguiente medida:
Measure =
VAR Total_Quantity =
SUMMARIZE (
'Table',
'Table'[Customer Type],
'Table'[Product],
'Table'[Product Range],
"Quantity Total", SUM ( 'Table'[Quantity] )
)
var ttt = SUM('Table'[Quantity])
RETURN
CALCULATE (
DISTINCTCOUNT ( 'Table'[Customer Type] ),
FILTER ( Total_Quantity, [Quantity Total] = 0 )
)
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsHola @Amos1992 ,
Pruebe la siguiente medida:
Measure =
VAR Total_Quantity =
SUMMARIZE (
'Table',
'Table'[Customer Type],
'Table'[Product],
'Table'[Product Range],
"Quantity Total", SUM ( 'Table'[Quantity] )
)
var ttt = SUM('Table'[Quantity])
RETURN
CALCULATE (
DISTINCTCOUNT ( 'Table'[Customer Type] ),
FILTER ( Total_Quantity, [Quantity Total] = 0 )
)
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsCheck out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.