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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi,
This is probably an easy one but I'm stumped.
I have a inventory transaction table that record inventory movements.
I have created a measure that calculate the inventory position by date (running total) which works fine:
However, as soon as I try to add detail in my table (such as transaction type), the logic breaks:
Does anyone have a clue how to fix this?
Thanks a lot!!!
Solved! Go to Solution.
@Silex_BI Add to your calculate another statement:
CALCULATE(
...
...,
REMOVEFILTERS('Table'[Transaction Type])
)
@Silex_BI Add to your calculate another statement:
CALCULATE(
...
...,
REMOVEFILTERS('Table'[Transaction Type])
)