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 folks
need help with formula
i have inventory transaction table (income-outcome)
and in aas use
thank you in advance
Hi @antonio_wurth ,
May I ask if you have resolved this issue? If so, please mark the helpful reply and accept it as the solution. This will be helpful for other community members who have similar problems to solve it faster.
Thank you.
Hi @antonio_wurth ,
May I ask if you have resolved this issue? If so, please mark the helpful reply and accept it as the solution. This will be helpful for other community members who have similar problems to solve it faster.
Thank you.
Hi @antonio_wurth ,
Thank you for reaching out to the Microsoft Fabric Community.
I wanted to check if you had the opportunity to review the information provided by @Anonymous . Please feel free to contact us if you have any further questions. If my response has addressed your query, please accept it as a solution and give a 'Kudos' so other members can easily find it.
Thank you.
Hi @antonio_wurth ,
Here are the steps you can follow:
1. Create calculated table.
Table 2 =
DISTINCT('Table'[Month])
2. Create measure.
Measure =
var _select=SELECTCOLUMNS('Table 2',"test",[Month])
RETURN
IF(
ISINSCOPE('Table'[Year]),SUM([inventory,pcs]),SUMX(FILTER(ALL('Table'),'Table'[Month] in _select),[inventory,pcs]))
3. Result:
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
hi folks
need help with formula
i have inventory transaction table (income-outcome)
and in aas use
thank you in advance