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

Be 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

Reply
Syndicate_Admin
Administrator
Administrator

Desea mostrar solo la segunda mitad de las ventas del mes en los 6 meses actuales

Hola

Tengo ventas desde enero de 2021 hasta octubre de 2021, ahora quiero mostrar las ventas del segundo semestre del mes (es decir, para el mes de septiembre necesito mostrar las ventas del 16/09/2021 al 30/09/2021, para el mes de octubre del 16/10/2021 al 31/10/2021) para la duración actual de 6 meses.

Por favor, ayúdame a hacerlo.

Gracias

AshDil.

1 ACCEPTED SOLUTION
Syndicate_Admin
Administrator
Administrator

@AshDil , Cree una medida como esta con la ayuda de la tabla de fechas


LAst 6 meses onlt últimos 15 días =
var _max = maxx(allselected('Date1'),'Date'[Date])
var _min = eomonth(_max,-6) +1
var _day = 16
devolución
CALCULATE(sum('Table'[Qty]), FILTER(ALL('Date'),'Date'[Date] >=_min && 'Date'[Date] <= _max && day('Date'[Date]) >=_day ) )

o

LAst 6 meses onlt últimos 15 días =
var _max = maxx(allselected('Date1'),'Date'[Date])
var _min = eomonth(_max,-6) +1
var _day = 16
devolución
CALCULATE(sum('Table'[Qty]), FILTER(('Date'),'Date'[Date] >=_min && 'Date'[Date] <= _max && day('Date'[Date]) >=_day ) )

o
LAst 6 meses onlt últimos 15 días =
var _max = eomonth(today(),-1)
var _min = eomonth(_max,-6) +1
var _day = 16
devolución
CALCULATE(sum('Table'[Qty]), FILTER(('Date'),'Date'[Date] >=_min && 'Date'[Date] <= _max && day('Date'[Date]) >=_day ) )

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

Debe agregar filtro en su medida.

Intenta crear algo como

_Sales 2nd Half = CALCULATE(SUM('Table'[Amount]),FILTER(Date,DAY(Date[Date])>15))

Syndicate_Admin
Administrator
Administrator

@AshDil , Cree una medida como esta con la ayuda de la tabla de fechas


LAst 6 meses onlt últimos 15 días =
var _max = maxx(allselected('Date1'),'Date'[Date])
var _min = eomonth(_max,-6) +1
var _day = 16
devolución
CALCULATE(sum('Table'[Qty]), FILTER(ALL('Date'),'Date'[Date] >=_min && 'Date'[Date] <= _max && day('Date'[Date]) >=_day ) )

o

LAst 6 meses onlt últimos 15 días =
var _max = maxx(allselected('Date1'),'Date'[Date])
var _min = eomonth(_max,-6) +1
var _day = 16
devolución
CALCULATE(sum('Table'[Qty]), FILTER(('Date'),'Date'[Date] >=_min && 'Date'[Date] <= _max && day('Date'[Date]) >=_day ) )

o
LAst 6 meses onlt últimos 15 días =
var _max = eomonth(today(),-1)
var _min = eomonth(_max,-6) +1
var _day = 16
devolución
CALCULATE(sum('Table'[Qty]), FILTER(('Date'),'Date'[Date] >=_min && 'Date'[Date] <= _max && day('Date'[Date]) >=_day ) )

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.

No @amitchandak,

Gracias por su ayuda. Funcionó para mí.

Gracias

AshDil.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

November Carousel

Fabric Community Update - November 2024

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

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

Top Solution Authors
Top Kudoed Authors