March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hola
Tengo un extraño requisito de requisitos de conteo. Quiero contar la ocurrencia de ID para cada día si ID rpeat al día siguiente no debe contarse. El resultado debe basarse en la siguiente imagen adjunta.
Sería muy útil si lo resolviera.
Gracias
Solved! Go to Solution.
Hay @Junaid11 ,
Por favor, cree las siguientes medidas:
Flag = CALCULATE(MAX('Table'[AccountID]),FILTER(ALL('Table'), [AccountID]=MAX('Table'[AccountID])&& [Date]=MAX('Table'[Date])-1))
Count = COUNTROWS(FILTER('Table',[Flag]=BLANK()))
Combine =
var _t=SUMMARIZE(FILTER('Table',[Date]=MAX('Table'[Date]) && [Flag]=BLANK()),[AccountID])
return CONCATENATEX(_t,[AccountID],",",[AccountID],ASC)
Salida:
Saludos
Eyelyn Qin
Si esta publicación ayuda, considere Aceptarla como la solución para ayudar a los otros miembros a encontrarla más rápidamente.
Hay @Junaid11 ,
Por favor, cree las siguientes medidas:
Flag = CALCULATE(MAX('Table'[AccountID]),FILTER(ALL('Table'), [AccountID]=MAX('Table'[AccountID])&& [Date]=MAX('Table'[Date])-1))
Count = COUNTROWS(FILTER('Table',[Flag]=BLANK()))
Combine =
var _t=SUMMARIZE(FILTER('Table',[Date]=MAX('Table'[Date]) && [Flag]=BLANK()),[AccountID])
return CONCATENATEX(_t,[AccountID],",",[AccountID],ASC)
Salida:
Saludos
Eyelyn Qin
Si esta publicación ayuda, considere Aceptarla como la solución para ayudar a los otros miembros a encontrarla más rápidamente.
Por favor, agregue un colum calcualizado que deterine si debe contarse de la siguiente manera:
CountValue=
VAR this_row_account=Tabla[AccountID]
VAR this_row_date=Tabla[Fecha]
DONDE Account_Present_Yesterday=
CALCULAR(COUNTROWS(Tabla),
FILTRO(Tabla
,Table[AccountID]=this_row_account && Table[Date]=this_row_date-1)
DEVOLUCIÓN
IF(Account_Present_Yesterday>0,Blank(),Table[AccountID])
A continuación, en el objeto visual, cuente la columna CountValue.
Espero que ayude,
David Ganor
Hola @David-Ganor ,
Sí, está funcionando para el conteo, pero ¿no podemos obtener la concatenación como (A, B, C, D, E) como se mencionó?
@Junaid11 No estoy seguro de que realmente ...
Por favor, trate de hacer una medida usando
CONCATENATEX
Algo como esto:
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.