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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello
I have a table with column
A = Company
B = User Count
C = Product Windows 10
or Product Windows 11
I would like to have a visual who shows
Column 1 = Company
Column 2 = Quantity User
Column 3 = Quantity of Windows 10
Column 4 = Quantity of Windows 11
Column 3 and Column 4 should be taken from C
Regards
Heinrich
Solved! Go to Solution.
Hello @Heinrich,
Can you please try the following measures for Quantity of Windows 10 and Windows 11
Quantity Windows 10 =
SUMX(
FILTER(
Data,
Data[Product] = "Product Windows 10"
),
Data[User Count]
)
Quantity Windows 11 =
SUMX(
FILTER(
Data,
Data[Product] = "Product Windows 11"
),
Data[User Count]
)
Hello @Heinrich,
Can you please try the following measures for Quantity of Windows 10 and Windows 11
Quantity Windows 10 =
SUMX(
FILTER(
Data,
Data[Product] = "Product Windows 10"
),
Data[User Count]
)
Quantity Windows 11 =
SUMX(
FILTER(
Data,
Data[Product] = "Product Windows 11"
),
Data[User Count]
)
Hello Sahir_Mahraj
Thank you very much.
I tried it with a Matrix and this worked but will keep your solution for future tasks.
Thanks
Heinrich
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 93 | |
| 81 | |
| 73 | |
| 46 | |
| 35 |