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

Ventas del mes en curso

¡Ayúdame por favor! Ahora el mes es marzo, quiero mostrar la dinámica de las ventas, no hubo ventas este mes, fueron en febrero. la función CALCULATE(SUM('Свод221'[Количество изделий всего,шт]),DATESMTD('Свод221'[Датавыдачи])) muestra el último mes de la venta, no el marzo actual, ¿cómo muestro marzo y que las ventas son 0? ¿O puede decirme de inmediato cómo comparar el mes actual con el anterior?

1 ACCEPTED SOLUTION
Syndicate_Admin
Administrator
Administrator

@DeEviloN , Ti usando hoy

MTD=
var _max = if(day(today() )=1 , eomonth(today(),-1), today())
var _min = eomonth(_max,-1)+1

devolución
CALCULATE(sum('Table'[Qty]), FILTER(ALL('Table'),'Table'[Date] >= _min && 'Table'[Date] <=_max ) )


LMTD =
var _max1 = if(day(today() )=1 , eomonth(today(),-1), today())
var _max = fecha(año(_max1),mes(_max1)-1, día(_max1))
var _min = eomonth(hoy(),-2)+1

devolución
CALCULATE(sum('Table'[Qty]), FILTER(ALL('Table'),'Table'[Date] >= _min && 'Table'[Date] <=_max ) )

Este mes Hoy =
var _min = eomonth(today(),-1)+1
var _max = eomonth(today(),0) //today()
devolución
CALCULATE(sum('Table'[Qty]), FILTER(ALL('Date'),'Date'[Date] >= _min && 'Date'[Date] <=_max ) )

Por qué falla la inteligencia del tiempo - Powerbi 5 Savior Steps for TI :https://youtu.be/OBf0rjpp5Hw
https://amitchandak.medium.com/power-bi-5-key-points-to-make-time-intelligence-successful-bd52912a5b...
Para obtener lo mejor de la función de inteligencia del tiempo. Asegúrese de tener un calendario de fechas y que se haya marcado como la fecha en la vista del modelo. Además, únalo con la columna de fecha de su/s hecho/s. Consulte :radacad sqlbi My Video Series Aprecie sus felicitaciones.

View solution in original post

3 REPLIES 3
Syndicate_Admin
Administrator
Administrator

@DeEviloN , Ti usando hoy

MTD=
var _max = if(day(today() )=1 , eomonth(today(),-1), today())
var _min = eomonth(_max,-1)+1

devolución
CALCULATE(sum('Table'[Qty]), FILTER(ALL('Table'),'Table'[Date] >= _min && 'Table'[Date] <=_max ) )


LMTD =
var _max1 = if(day(today() )=1 , eomonth(today(),-1), today())
var _max = fecha(año(_max1),mes(_max1)-1, día(_max1))
var _min = eomonth(hoy(),-2)+1

devolución
CALCULATE(sum('Table'[Qty]), FILTER(ALL('Table'),'Table'[Date] >= _min && 'Table'[Date] <=_max ) )

Este mes Hoy =
var _min = eomonth(today(),-1)+1
var _max = eomonth(today(),0) //today()
devolución
CALCULATE(sum('Table'[Qty]), FILTER(ALL('Date'),'Date'[Date] >= _min && 'Date'[Date] <=_max ) )

Por qué falla la inteligencia del tiempo - Powerbi 5 Savior Steps for TI :https://youtu.be/OBf0rjpp5Hw
https://amitchandak.medium.com/power-bi-5-key-points-to-make-time-intelligence-successful-bd52912a5b...
Para obtener lo mejor de la función de inteligencia del tiempo. Asegúrese de tener un calendario de fechas y que se haya marcado como la fecha en la vista del modelo. Además, únalo con la columna de fecha de su/s hecho/s. Consulte :radacad sqlbi My Video Series Aprecie sus felicitaciones.

Mira lo que está mal con el mes anterior

Безымянный.png

En ella, @DeEviloN

Es difícil descubrir el problema a partir de la captura de pantalla, ¿puede compartir más detalles para la investigación?

Saludos
Equipo de soporte de la comunidad _ Eason

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

AugPowerBI_Carousel

Power BI Monthly Update - August 2024

Check out the August 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.

August Carousel

Fabric Community Update - August 2024

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

Top Solution Authors