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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
ashrafkotb
Helper I
Helper I

¿Cómo crear una columna calculada para restar el valor de fila anterior?

Hola

Necesito crear una columna calculada que resta el valor de fila actual del valor de fila anterior en función de la fecha y el nombre del cliente. Por ejemplo:

FechaValorClienteCalc_column (valor esperado)
01-04-2020100A
01-04-2020400B
01-04-2020500C
02-04-2020120A20
02-04-2020440B40
02-04-2020560C60

¡Gracias de antemano!

1 ACCEPTED SOLUTION
az38
Community Champion
Community Champion

Hola @ashrafkotb

Tratar

Calc_column = 
var _thisDate = Table[Date]
var _prevDate = CALCULATE(MAX(Table[Date]), ALLEXCEPT(Table, Table[Customer]), Table[Date] < _thisDate )

RETURN
Table[Value] - CALCULATE(MAX(Table[Value]), ALLEXCEPT(Table, Table[Customer]), Table[Date] = _prevDate )

do not hesitate to give a kudo to useful posts and mark solutions as solution
LinkedIn

View solution in original post

5 REPLIES 5
Greg_Deckler
Super User
Super User

Vea mi artículo sobre el tiempo medio entre el error (MTBF) que utiliza EARLIER: http://community.powerbi.com/t5/Community-Blog/Mean-Time-Between-Failure-MTBF-and-Power-BI/ba-p/3395...

Así que en tu caso, algo como:

Calc_column = 
  VAR __PreviousDate = MAXX(FILTER('Table',[Date] < EARLIER([Date]) && [Customer] = EARLIER([Customer])),[Date])
  VAR __PreviousValue = MAXX(FILTER('Table',[Date] = __PreviousDate) && [Customer] = EARLIER([Customer])),[Date])
RETURN
  [Value] - __PreviousValue
  

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Obtener un error de sintaxis para esta fórmula.

amitchandak
Super User
Super User

@ashrafkotb ,

Pruebe nuevas columnas como

Fecha máxima: maxx(filter(Table, table[Date]<earlier(Table[Date]) && table[Customer]-earlier(Table[Customer])),Table[Date])
diff - Table[value] - maxx(filter(Table, table[Date]-earlier(Table[max date]) && table[Customer]-earlier(Table[Customer])),Table[value])

az38
Community Champion
Community Champion

Hola @ashrafkotb

Tratar

Calc_column = 
var _thisDate = Table[Date]
var _prevDate = CALCULATE(MAX(Table[Date]), ALLEXCEPT(Table, Table[Customer]), Table[Date] < _thisDate )

RETURN
Table[Value] - CALCULATE(MAX(Table[Value]), ALLEXCEPT(Table, Table[Customer]), Table[Date] = _prevDate )

do not hesitate to give a kudo to useful posts and mark solutions as solution
LinkedIn

Esto funcionó, gracias.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Kudoed Authors