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!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
Hi Team,
I have Device in row where month and types are in column.
the result I am getting in power bi is :
but I need Month wise % row distribution in types that means I need addition of 2 click and 3 click would be 100%
for example find the ouput that I need which is easily available in excel
Thanks,
Arvind
Solved! Go to Solution.
hello @Arvind_123
assuming that the second level pn the columns is a column from a table with values : 2 click , 3 click.
Can you please try this measure :
measure =
var num = sum(table[col])
var denom =
calculate (
sum( table[col]) ,
allselected(table[click_col])
return
divide
( num,
denom,
0
)
let me know if it works .
best regards.
always happy to help
Hi Team,
Anyone can Please help me out to reach above desire output in power bi.
Thanks,
Arvind
hello @Arvind_123
assuming that the second level pn the columns is a column from a table with values : 2 click , 3 click.
Can you please try this measure :
measure =
var num = sum(table[col])
var denom =
calculate (
sum( table[col]) ,
allselected(table[click_col])
return
divide
( num,
denom,
0
)
let me know if it works .
best regards.
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 64 | |
| 53 | |
| 42 | |
| 20 | |
| 17 |
| User | Count |
|---|---|
| 121 | |
| 103 | |
| 46 | |
| 30 | |
| 24 |