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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Hello,
I have a table with an inventory amount and an inventory average
If I go to the month level, the average is shown for the month, but I would like to show the same yearly average for every month in the year.
So for 2020 I would like every Average Inventory value to be 787.
I appreciate any help.
Kind regards
Try this measure:
Average Inventory =
CALCULATE (
AVERAGE ( Table1[Inventory Amount] ),
ALLEXCEPT ( Table1, Table1[CUST-ID], Table1[Jahr] )
)
Proud to be a Super User!