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
edayeh
New Member

Calcular datos de instantánea Delta -

Hola

Estoy tratando de obtener deltas de datos de instantáneas y no puedo averiguar cómo.

Yo snapshotdata (en SFDC) diariamente por cuenta y ARR para esa cuenta y traigo ese valor de almacenamiento. Me encantaría poder calcular el delta de cualquier cambio diario para una cuenta específica. A continuación se muestra lo que me encantaría conseguir.

Quiero crear un colum (Delta a continuación) que me mostrará qué cuentas cambiaron de la fecha anterior. Pequeño tamaño de muestra por debajo.

NombreArrFechaDelta
Cuenta 1 $ 68,22329-Oct
Cuenta 1 $ 26,65630-Oct($41,567)
Cuenta 2 $ 68,16229-Oct
Cuenta 2 $ 68,16230-Oct$0
Cuenta 3 $ 177,32429-Oct
Cuenta 3 $ 1,67930-Oct($175,645)
Cuenta 4 $ 12,81929-Oct
Cuenta 4 $ 8,07130-Oct($4,748)
Cuenta 5 $ 18029-Oct
Cuenta 5 $ 18030-Oct$0

Tengo más de 500 cuentas, así que la instantánea tiene más de 500 registros diarios.

¿Cómo puedo obtener una fórmula para mostrarme esto? gracias de antemano

1 ACCEPTED SOLUTION
camargos88
Community Champion
Community Champion

@edayeh ,

Puede utilizar este código para crear una columna calculada:

Delta = 
VAR _date = CALCULATE(MAX('Table'[Date]), FILTER('Table', 'Table'[Date] < EARLIER('Table'[Date])))
RETURN IF(_date <> BLANK(), CALCULATE(SUM('Table'[ARR]), FILTER('Table', 'Table'[Name] = EARLIER('Table'[Name]) && [Date] = _date)) - 'Table'[ARR], BLANK())

Capture.PNG



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
camargos88
Community Champion
Community Champion

@edayeh ,

Puede utilizar este código para crear una columna calculada:

Delta = 
VAR _date = CALCULATE(MAX('Table'[Date]), FILTER('Table', 'Table'[Date] < EARLIER('Table'[Date])))
RETURN IF(_date <> BLANK(), CALCULATE(SUM('Table'[ARR]), FILTER('Table', 'Table'[Name] = EARLIER('Table'[Name]) && [Date] = _date)) - 'Table'[ARR], BLANK())

Capture.PNG



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

Proud to be a Super User!



Muchas gracias..... Sí

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