Forum Discussion
Graph and visualization help
Hi,
I have a requirement , where my data looks like below
https://www.dropbox.com/s/1n3gtyqxb8wjncn/data.xlsx?dl=0
Account AccountSegment TER_FYTD_USD
| Eig | Core | 0 |
| Dol | Core | 33914.75 |
| 818 | Core | 0 |
| 818 | Core | -7439.3 |
| DE | G360 | 0 |
| DE | G360 | 0 |
| DE | Core | 0 |
| DE | Core | 0 |
| DE | Core | 0 |
| DE | Core | 0 |
| DE | Core | 0 |
| DE | Core | 0 |
| Edi | Core | 0 |
| Edi | Core | 31351.83162 |
| Edi | Core | 0 |
| Edi | Core | 52873.82172 |
I need to create a format in Power BI in the below format (this is done PPT)
let me know how do i achieve this?
Hey ,
So here's what i did, i grouped the the table using edit query, and the group by transformation as shown below.
Now , on the data modelling section , created two column as below
Rank= IF([AccountSegment]="Core",RANKX('Account Grouped',[FYTD]))
and
categorize = SWITCH(TRUE(),[RANK]>25, "Remainder",
[RANK]>10, "Next 15 Core",
[RANK]>0, "Top 10 Core",
"G360")Now use this categorize column to create the visual.
Hope this servers your need.
Regards.
12 Replies
- praiselyabrahamResolver II
Hey ,
So here's what i did, i grouped the the table using edit query, and the group by transformation as shown below.
Now , on the data modelling section , created two column as below
Rank= IF([AccountSegment]="Core",RANKX('Account Grouped',[FYTD]))
and
categorize = SWITCH(TRUE(),[RANK]>25, "Remainder",
[RANK]>10, "Next 15 Core",
[RANK]>0, "Top 10 Core",
"G360")Now use this categorize column to create the visual.
Hope this servers your need.
Regards.
- vjnvinodImpactful Individual
- praiselyabrahamResolver II
Hi ,
The top visual can be achived using the waaterfall chart , give it a shot, it should work.
For the below information , you would have to place tables for the respective information .
Regards.
- vjnvinodImpactful Individual
thanks for this
But it doesn't looks like it works
How do i categorise G360, Top 10 core , Next 15 core, Remainder?
- vjnvinodImpactful Individual
https://www.dropbox.com/s/1n3gtyqxb8wjncn/data.xlsx?dl=0
Can you please try and share? how you think this can be achieved?
sample file attached in the link.
- vjnvinodImpactful Individual
Hi,
I have a requirement , where my data looks like below
https://www.dropbox.com/s/1n3gtyqxb8wjncn/data.xlsx?dl=0
Account AccountSegment TER_FYTD_USD
Eig Core 0 Dol Core 33914.75 818 Core 0 818 Core -7439.3 DE G360 0 DE G360 0 DE Core 0 DE Core 0 DE Core 0 DE Core 0 DE Core 0 DE Core 0 Edi Core 0 Edi Core 31351.83162 Edi Core 0 Edi Core 52873.82172 I need to create a format in Power BI in the below format (this is done PPT)
let me know how do i achieve this?
Can you help create a format which i can use? seee the sample file attached!