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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register 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
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 68 | |
| 61 | |
| 45 | |
| 19 | |
| 15 |
| User | Count |
|---|---|
| 108 | |
| 108 | |
| 39 | |
| 30 | |
| 26 |