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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
Syndicate_Admin
Administrator
Administrator

Medida - Contar todos los datos excepto el trimestre anterior?

¿Alguien sabe cómo cambiar esta medida (quizás una nueva) que puede hacer un conteo excluyendo el trimestre anterior?

agd50_0-1694498748132.png

Recuento de incidentes YTD -1Q =
DÓNDE _Hoy =
HOY ()
DÓNDE Fecha de inicio =
FECHA ( AÑO ( _Hoy ), 1, 1 )
DÓNDE Fecha de finalización =
FECHA ( AÑO ( _Hoy ), PISO ( MES ( _Hoy ) - 1, 3 ) + 1, 1 ) - 1
DÓNDE Resultados =
CALCULAR (
[Conteo de x],
FECHASENTRE ( 'Dim_Calendar'[Fecha], Fecha de inicio, Fecha de finalización )
)
DEVOLUCIÓN
Resultados
3 REPLIES 3
Syndicate_Admin
Administrator
Administrator

@agd50 ¿Has probado este...

over all = Suma(Ventas[Importe de ventas])

Último Qtr Hoy =
var _today = hoy()
var _max = eomonth(_today, -1*if( mod(Month(_today),3) =0,3,mod(Month(_today),3)))
var _min = eomes(_max,-3)+1
devolución
CALCULATE(Sum(Sales[Sales Amount]) , FILTER('Date','Date'[Date] >=_min && 'Date'[Date] <= _max))

Entonces Total distinto del último qtr =

[Sobre todo] - [Último Qtr hoy]

En esto, puede reemplazar la suma de medida con count según necesite count.

También confirme si está usando el filtro de fecha en la página o no causa que puede cambiar la solución

Syndicate_Admin
Administrator
Administrator

Gracias, pero debería haber aclarado que quería decir sin YTD

Syndicate_Admin
Administrator
Administrator

Prueba esto si esto funciona para ti.

Recuento de incidentes YTD excluyendo el trimestre anterior =
VAR _today = HOY()
VAR StartDate = FECHA(AÑO(_today), 1, 1)
VAR EndDate = FECHA(AÑO(_today), PISO(MES(_today) - 1, 3) + 1, 1) - 1
VAR PrevQuarterStartDate = FECHA(AÑO(_today), PISO(MES(_today) - 4, 3) + 1, 1)
VAR PrevQuarterEndDate = FECHA(AÑO(_today), PISO(MES(_today) - 1, 3) + 1, 1) - 1
Resultados VAR =
CALCULAR(
[Conde de x],
DATESBETWEEN('Dim_Calendar'[Date], StartDate, EndDate),
NOT DATESBETWEEN('Dim_Calendar'[Date], PrevQuarterStartDate, PrevQuarterEndDate)
)
Resultados DEVOLVER

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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

Top Solution Authors