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.
Please help me I am trying to filter the data in 23 Qty Blank Values Only Based on the check Month Wise .
Hi @Pavan_123456789 ,
Could you tell us the reason that you don't want to use SUMX?
And whether @lbendlin answer can help you get the desired result.
If his post helps, could you please mark his post as Answered? It will help the others in the community find the solution easily if they face the same problem as yours. Thank you.
Best Regards,
Yulia Yan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Please indicate the expected outcome based on your sample data.
Hi @lbendlin Thanks for your reply This is which i am expected result [23 Qty Blank] By using the sumx function which i am getting ,But i need without using the Sumx is it possible to filter the data?
While you can use a measure as a visual filter it is recommended that you don't attempt to measure a measure. Implement the complete business logic in a single measure.
Hi @lbendlin I have tried comlete business scenario in one measure without using the [check month wise] but still I am not able to filtering the Subtotal and Total level .Please help me
23 Qty Blank Values Only = var _23 Qty = calculate(sum(Financial data(QTY),
Financial data[Year]=2023
var _22 Qty = calculate(sum(Financial data(QTY),
Financial data[Year]=2022
Return
If(Not(Isblank(_23 Qty)&&Not(Isblank(_22 Qty),_23 Qty,0)
Remember that in a table visual a measure is calculated twice. Once at the row level and once at the Totals level. "Think like the Grand Total" - use Summarize and apply your rules to each virtual table, even if that only consists of a single row.
Hi @lbendlin Thank you for the Replay
Can you give me clear solution where to use summerize ?
Please find the attached link for the Pbix file https://drive.google.com/file/d/1CCzoCSwThRgRSYaDvHCEOxtkJYQFffht/view?usp=drive_link
Yes I want to show the values when there also a values in 2022 also (But without using the sumx is it not possible ?)