Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
Check it out now!Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
TotalOpenOrderAmount1 = CALCULATE ([OrderAmount]-[ShippedAmount], ALL(CalendarDate), OrderLineDetail[Status]="Open") TotalOpenOrderAmount2 = CALCULATE ([OrderAmount]-[ShippedAmount], ALL(CalendarDate), Filter(OrderLineDetail,OrderLineDetail[Status]="Open") )
TotalOpenOderAmount1 can be measured as expected.
But TotalOpenOrderAmount2 is still affected by Calendar filters on the report.
Why is that? Can someone help to explain it?
hi @kanielwang
Try this. It's the equivalent of TotalOpenOrderAmount1
TotalOpenOrderAmount2 = CALCULATE ([OrderAmount]-[ShippedAmount], ALL(CalendarDate), Filter(ALL(OrderLineDetail[Status]),OrderLineDetail[Status]="Open") )