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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
sridharpolina
Helper I
Helper I

Calculating delta of product Quantity between two dynamically selected dates

I am trying to calculate the delta of product quantity for two dynamically selected dates. I have a table populating the beginning, ending and the delta inventory for both the dates. Now I am having trouble calculating the delta between DI2-DI1 as shown in the image. The date selection is dynamic and User selected. The sample data and the .pbix files are uploaded to Goggle Drive. Any help is appreciated.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @sridharpolina ,

 

Here are the steps you can follow:

1. Create calculated table.

Table = SUMMARIZE('Inventory Changes','Inventory Changes'[as_of_date])

Result:

v-yangliu-msft_0-1619415286552.png

2. Replace the second slicer with [as_of_date] of the newly created table

v-yangliu-msft_1-1619415286558.png

3. Select the slicer above, select Edit interactions of Format, and select the Filter flags in both tables

v-yangliu-msft_2-1619415286564.png

4. Create measure.

_begin = 
SUMX(FILTER(ALL('Inventory Changes'),[as_of_date] in SELECTCOLUMNS('Table',"1",[as_of_date])&&[product_identifier1]=MAX([product_identifier1])),[opening_inv])
_end = 
SUMX(FILTER(ALL('Inventory Changes'),[as_of_date] in SELECTCOLUMNS('Table',"1",[as_of_date])&&[product_identifier1]=MAX([product_identifier1])),[closing_inv])
Delta_Inventory1 =
[_end]-[_begin]
Delta_Inventory2 =
SUM('Inventory Changes'[Delta_Inventory])-[Delta_Inventory1]

5. Result.

123.png

 

 

 Best Regards,

Liu Yang

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

1 REPLY 1
Anonymous
Not applicable

Hi @sridharpolina ,

 

Here are the steps you can follow:

1. Create calculated table.

Table = SUMMARIZE('Inventory Changes','Inventory Changes'[as_of_date])

Result:

v-yangliu-msft_0-1619415286552.png

2. Replace the second slicer with [as_of_date] of the newly created table

v-yangliu-msft_1-1619415286558.png

3. Select the slicer above, select Edit interactions of Format, and select the Filter flags in both tables

v-yangliu-msft_2-1619415286564.png

4. Create measure.

_begin = 
SUMX(FILTER(ALL('Inventory Changes'),[as_of_date] in SELECTCOLUMNS('Table',"1",[as_of_date])&&[product_identifier1]=MAX([product_identifier1])),[opening_inv])
_end = 
SUMX(FILTER(ALL('Inventory Changes'),[as_of_date] in SELECTCOLUMNS('Table',"1",[as_of_date])&&[product_identifier1]=MAX([product_identifier1])),[closing_inv])
Delta_Inventory1 =
[_end]-[_begin]
Delta_Inventory2 =
SUM('Inventory Changes'[Delta_Inventory])-[Delta_Inventory1]

5. Result.

123.png

 

 

 Best Regards,

Liu Yang

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

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors