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
| User | Count |
|---|---|
| 55 | |
| 37 | |
| 23 | |
| 17 | |
| 17 |
| User | Count |
|---|---|
| 69 | |
| 58 | |
| 39 | |
| 21 | |
| 21 |