Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I need to create a report with all the detailed information and totals information by using the given data. Can anyone please help me to achieve the Output.
Source:
Output: (In a Single table)
Hi Ashokkumar,
Create a straight table with these dimensions:
=ValueList('Global','APAC','EMEA','LAC','NA')
Style
and an expression
Sum(if (ValueList('Global','APAC','EMEA','LAC','NA')='Global', Aggr(sum(value),Style),
if(Region =ValueList('Global','APAC','EMEA','LAC','NA'),value)))
gives:
Region | Style | Value |
---|---|---|
Global | 1221 | 150 |
Global | 3456 | 360 |
Global | 1230 | 390 |
Global | 1234 | 500 |
APAC | 1230 | 80 |
APAC | 1234 | 100 |
APAC | 1221 | 110 |
EMEA | 1221 | 40 |
EMEA | 3456 | 110 |
EMEA | 1234 | 200 |
LAC | 1234 | 50 |
LAC | 3456 | 130 |
LAC | 1230 | 160 |
NA | 3456 | 120 |
NA | 1230 | 150 |
NA | 1234 | 150 |
Regards
Andrew
create a pivot table and add Global and region style as dimension
exp: count(value)
I don't have any field with Global, All the totals need to show as Label 'Global'.
All the totals i need to display in the top, if i have taken a pivot table it will shows the totals in every field data level. I need all those total information at Top and then detailed information as per the attached screenshot as output.
Hi ,
PFA
Thanks Ankur,
Is there any possibility to achieve in the front end only. Because we have some many reports created in front end based on these fields. So, if i follow this method i need to edit all the existing reports. Can you please help me to achieve this in UI.
Guys, Any help on this requirement in front end. It is bit Urgent.
As i know, You need to create Dim field with in the script as Island Table
Load * Inline [
Dim
1
2
];
And then you must use Dimension as
Pick('Group', Dim, Region)
Then, Same as Expression
Thanks Anil for response,
I didn't get your point, Can you please elaborate some more detail.
I mean this?
Hi Ashokkumar,
If you're restricted to a front end solution then maybe a container set up as grid with two straight tables?
Regards
Andrew