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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Lucy_Ramirez
Frequent Visitor

Incremento por producto

Hola

Me puedes ayudar? Estoy intentando calcular el incremento de precio por tamaño de producto.

Mi tabla esta de la siguiente manera:

 Precio
REFRESCO 16 OZ$55
REFRESCO 22 OZ$60
REFRESCO 32 OZ$65
REFRESCO 44 OZ$70

 

Necesito que mi formula me diga cual es el porcentaje de incremento entre cada tamaño de refresco, me gustaría que la formula me mostrara la formula de incremento:

 PrecioIncremento
REFRESCO 16 OZ$55N/A
REFRESCO 22 OZ$609.09%
REFRESCO 32 OZ$658.33%
REFRESCO 44 OZ$707.69%

 

Muchas gracias!

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Lucy_Ramirez ,

 

According to your description, here are my steps you can follow as a solution.

(1) This is my test data. 

vtangjiemsft_0-1695089429442.png

(2)Click "transform data" to go to the power query editor and add a index column.

(3) We can create a measure. 

Incremento = VAR _a= CALCULATE(MAX('Table'[Precio]),FILTER(ALL('Table'),'Table'[Index]=MAX('Table'[Index])-1))
var _b=MAX('Table'[Precio])
var _c=DIVIDE(_b-_a,_a,0)
return IF(_c=0,"N/A",_c)

(4) Then the result is as follows.

vtangjiemsft_1-1695089542678.png

Best Regards,

Neeko Tang

If this post  helps, then please consider Accept it as the solution  to help the other members find it more quickly. 

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @Lucy_Ramirez ,

 

According to your description, here are my steps you can follow as a solution.

(1) This is my test data. 

vtangjiemsft_0-1695089429442.png

(2)Click "transform data" to go to the power query editor and add a index column.

(3) We can create a measure. 

Incremento = VAR _a= CALCULATE(MAX('Table'[Precio]),FILTER(ALL('Table'),'Table'[Index]=MAX('Table'[Index])-1))
var _b=MAX('Table'[Precio])
var _c=DIVIDE(_b-_a,_a,0)
return IF(_c=0,"N/A",_c)

(4) Then the result is as follows.

vtangjiemsft_1-1695089542678.png

Best Regards,

Neeko Tang

If this post  helps, then please consider Accept it as the solution  to help the other members find it more quickly. 

amitchandak
Super User
Super User

@Lucy_Ramirez , Create a new column

 

New colum =

var _min = minx(filter(Table, [Item] =earlier([Item])), [Size])

var _price= maxx(filter(Table, [Item] =earlier([Item]) && [Size] =_min), [Precio]) 

return

divide([Precio] -_price, _price)

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

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

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