Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi all,
You guys have been such a great resource for me and I really appreciate it. I'm learning a lot but theres still some things that I can't seem to get correct.
I have a matrix of inventory at the end of the month. inventory same period last year, total sales and lastly inventory turnover. I'll add an image of how it currently looks like. Everything seems to be working fine except for my inventory turnover formula. The quarterly subtotals takes the average of the previous 3 months instead of the last value of the period. Is there anyway around this? These are the formulas that I currently use:
Turnover Ratio =
DIVIDE('_Measures Inventory'[Total Sales], '_Measures Inventory'[Sum Inventory Value])
Total Sales =
SUM('CustomerOrderLines 2019- July 2022'[Total Sales])
Sum Inventory Value =
SUM('2019 - 2022 Inventory Value'[Total Value])
Solved! Go to Solution.
@comacabana ,based on what I got
have column year month YYYYMM format and try measure like
calculate( lastnonblankvalue('Date'[Year Month]), SUM('2019 - 2022 Inventory Value'[Total Value]))
Column YYYYMM
year month = format([Date], "YYYYMM")
@amitchandak You are the best thank you that worked perfectly!
I slightly modified the formula to get turnover ratio in case anyone is interested.
CALCULATE(LASTNONBLANKVALUE('Date Table'[Year Month Number], DIVIDE(SUM('CustomerOrderLines 2019- July 2022'[Total Sales]),SUM('2019 - 2022 Inventory Value'[Total Value]))))
@comacabana ,based on what I got
have column year month YYYYMM format and try measure like
calculate( lastnonblankvalue('Date'[Year Month]), SUM('2019 - 2022 Inventory Value'[Total Value]))
Column YYYYMM
year month = format([Date], "YYYYMM")
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 59 | |
| 46 | |
| 42 | |
| 23 | |
| 18 |
| User | Count |
|---|---|
| 190 | |
| 122 | |
| 96 | |
| 66 | |
| 47 |