- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Cost Distribution %Row Total
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

always happy to help
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hi Team,
Anyone can Please help me out to reach above desire output in power bi.
Thanks,
Arvind
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

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.

Helpful resources
Subject | Author | Posted | |
---|---|---|---|
02-14-2023 09:50 AM | |||
11-21-2024 09:44 AM | |||
03-11-2024 02:07 PM | |||
11-18-2024 01:14 PM | |||
11-28-2024 10:35 AM |
User | Count |
---|---|
96 | |
87 | |
83 | |
52 | |
51 |