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
grayFox
Regular Visitor

Visuales de tarjetas -Inteligencia del tiempo

Hola a todos

Después de un consejo.

Tengo una tabla de calendario y una tabla de ventas.

Como hay un retraso en la presentación de informes, no puedo utilizar las medidas del mes actual y del mes anterior para informar de estos meses mencionados.

¿Hay alguna manera de hacer un mes actual -1 y una medida -1 del mes anterior? Necesitaré esto principalmente para una tarjeta visual.

Gracias

3 REPLIES 3
Mariusz
Community Champion
Community Champion

Hola @grayFox

puede utilizar las siguientes medidas

Sales Last Month = 
CALCULATE(
    [Sales],
    PREVIOUSMONTH( 'Calendar'[Date] )
)
Sales Last Month -1 = 
CALCULATE(
    [Sales Last Month],
    PREVIOUSMONTH( 'Calendar'[Date] )
) 

Más adelante, agregue el filtro de columna Fecha a los objetos visuales de su tarjeta como se muestra a continuación.

image.png

Saludos
Mariusz

Si este post ayuda,entonces por favor considere aceptarlo como la solución.

Por favor, siéntase libre de conectarse conmigo.
Linkedin

Hola Mariuz,

Muchas gracias, esto funcionó. ¡La solución era más simple de lo que pensaba!

Un pequeño ajuste para hacer que la sugerencia funcione, necesitaba cambiar el filtro como se sugiere de 'Día' a 'Mes'

amitchandak
Super User
Super User

@grayFox ,Crear calendario hasta la fecha máxima de venta

calendario (Min('Sales'[Date]),Max('Sales'[Date]))

O crear medidas como

Este Mes (Máx.)
var _max á maxx('Sales','Sales'[Fecha])
var _min á Minx('Sales','Sales'[Fecha])

devolución
CALCULATE(SUM('Sales'[Sales]), FILTER(all('Date'), 'Date'[Date]<-_max && 'Date'[Date]>-_min))

mes pasado (máx.)
var _max á maxx('Sales',dateadd('Sales'[Date],-1,month))
var _min á Minx('Sales',dateadd('Sales'[Date],-1,month))

devolución
CALCULATE(SUM('Sales'[Sales]), FILTER(all('Date'), 'Date'[Date]<-_max && 'Date'[Date]>-_min))

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here

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!

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.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.

Top Solution Authors
Top Kudoed Authors