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.
I have 3 tables like below
SALES | |||
ORD_NBR | ACCOUNT_TYPE_A | ACCOUNT_TYPE_B | REVENUE |
O1 | A1 | 10 | |
O2 | A1 | B1 | 11 |
O3 | B2 | 12 | |
O4 | A2 | B1 | 13 |
O5 | A2 | B3 | 14 |
ACCOUNT_A | ||
ACCOUNT_ID | ACCOUNT_NAME | THRESHOLD_VALUE |
A1 | APPLE | 100 |
A2 | HP | 90 |
A3 | DELL | 80 |
A4 | LENOVO | 70 |
ACCOUNT_B | |
ACCOUNT_ID | ACCOUNT_NAME |
B1 | |
B2 | MICROSOFT |
B3 | AMAZON |
POWERBI MATRIX
ACCOUNT_TYPE_A | ACCOUNT_TYPE_B | REVENUE | ACCOUNT_TYPE_A_THRESHOLD |
APPLE | 21 | 100 | |
11 | |||
MICROSOFT | |||
AMAZON | |||
HP | 14 | 90 | |
MICROSOFT | 14 | ||
AMAZON | |||
DELL | 80 | ||
MICROSOFT | |||
AMAZON |
I am using THRESHOLD MEASURES as below
IF(ISINSCOPE('ACCOUNT_B'[ACCOUNT_ID]) ,BLANK(),SUM('ACCOUNT_A'[THRESHOLD_VALUE]))
I need to get rid of values in the Red color.
Hi @MKPBI_2805 -
Your required output doesn't seem to match your data, but to get rid of rows that have BLANK for revenue, go the the Filters Pane and select where REVENUE is not blank.
Hope this helps
David