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.
Lost Customers = IF([Total_amount_exclude_vat_]>0&&'All measure'[Last Period Revenue]<=0, "Left", BLANK())
Can someone explain to me how I can count the row number of this measure and filter the number of "Left". this measure is in a measure table. Thanks
Solved! Go to Solution.
To count the rows of a table you need to have a table first.
Create a table variable to SUMMARIZE over the customer IDs. Use ADDCOLUMNS to compute if they left or not. FILTER the result by the ones that left. Do a COUNTROWS over that result. That's what your measure should return.
Thanks. its work
To count the rows of a table you need to have a table first.
Create a table variable to SUMMARIZE over the customer IDs. Use ADDCOLUMNS to compute if they left or not. FILTER the result by the ones that left. Do a COUNTROWS over that result. That's what your measure should return.
User | Count |
---|---|
15 | |
11 | |
6 | |
6 | |
5 |
User | Count |
---|---|
30 | |
18 | |
11 | |
7 | |
5 |