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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
Anonymous
Not applicable

Calcular ventas de trimestres estáticos

¡Hola expertos! 🤗

Estoy tratando de crear una tabla que tenga unverage quarter ventas desde julio'2018, hasta hoy


Así que tendría algo así:

JAS'18 (julio, agosto y sep)OND'18 (oct, nov & dec)JFM'19AMJ'19
VentasXxxxXxxxxXxxxXxxxx

Sin embargo, sihen aplico mis fórmulas, los mismos datos mostrados para dos trimestres diferentes, como below:

photot.PNG
yt hese son las fórmulas que utilicé:

JAS'19 - CALCULATE(SUM('BASE_SELL_OUT (2)'[Sell Out(MSU)]),DATESINPERIOD(Amonth[AMonth],07/01/2019,2,MONTH))/3
OND'19 - CALCULATE(SUM('BASE_SELL_OUT (2)'[Sell Out(MSU)]),DATESINPERIOD(Amonth[AMonth],10/01/2019,2,MONTH))/3

t lo único que cambié fue el mes de inicio, por lo que cambiaría el trimestreYa tengo una tabla de datos de mes independiente.
¿Podrías ayudarme a resolver esto?
Gracias 🙂
1 ACCEPTED SOLUTION
DataInsights
Super User
Super User

@yohandipt, intente ajustar la fecha en una función FECHA:

JAS'19 =
CALCULATE (
    SUM ( 'BASE_­SELL_OUT (2)'[Sell Out(MSU)] ),
    DATESINPERIOD ( Amonth[AMonth], DATE ( 2019, 07, 01 ), 2, MONTH )
) / 3





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@yohandipt , debe probar Datesqtd si es posible con la tabla de fechas.

QTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESQTD(('Date'[Date])))
Last QTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESQTD(dateadd('Date'[Date],-1,QUARTER)))

Last complete QTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESQTD( ENDOFQUARTER(dateadd('Date'[Date],-1,QUARTER))))
Last to last QTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESQTD(dateadd('Date'[Date],-2,QUARTER)))

Para obtener lo mejor de la función de inteligencia del tiempo. Asegúrese de que tiene un calendario de fechas y que se ha marcado como la fecha en la vista de modelo. Además, únete a ella con la columna de fecha de tus hechos. recomienda:
https://radacad.com/creating-calendar-table-in-power-bi-using-dax-functions
https://www.archerpoint.com/blog/Posts/creating-date-table-power-bi
https://www.sqlbi.com/articles/creating-a-simple-date-table-in-dax/

Vea si mi seminario web sobre Time Intelligence puede ayudar: https://community.powerbi.com/t5/Webinars-and-Video-Gallery/PowerBI-Time-Intelligence-Calendar-WTD-Y...


Apreciamos tus Felicitaciones.

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
DataInsights
Super User
Super User

@yohandipt, intente ajustar la fecha en una función FECHA:

JAS'19 =
CALCULATE (
    SUM ( 'BASE_­SELL_OUT (2)'[Sell Out(MSU)] ),
    DATESINPERIOD ( Amonth[AMonth], DATE ( 2019, 07, 01 ), 2, MONTH )
) / 3





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Kudoed Authors