Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I want to create a bar chart with 2 dimension & two expression. One expression should be stacked sub type & other expression should be grouped subtype.
Any help would be appreciated.
PFA contains the application as well as data..
This Chart is OK but my requirement is different
I have:
1)Annual plan year wise for salesman
2)Actual Plan month wise for salesman
I want All month grouped into a single bar & another bar for Annual Plan
Could you please add your application sample to understand me your requirement.
PFA content.
I want both the chart to be combine.
Any solution guys???
Hi,
See attachment.
Hi Prashant,
Try like this
Script:
----------
Tab1:
LOAD Salesman,
Month,
Actual AS Value,
1 AS Category
FROM
[Budget.xlsx]
(ooxml, embedded labels, table is Sheet1);
Tab1:
LOAD Salesman,
Month,
[Annual Plan] AS Value,
2 AS Category
FROM
[Budget.xlsx]
(ooxml, embedded labels, table is Sheet1);
Now in chart use
Dimension : Salesman, Category
Expression1:=Sum({<Category={2}>}Actual)
Expression2:=sum({$<Category={1}, Month={Jan}>} Actual)
Expression3:=sum({$<Category={1}, Month={Feb}>} Actual)
Expression4:=sum({$<Category={1}, Month={Mar}>} Actual)
Expression5:=sum({$<Category={1}, Month={Apr}>} Actual)
Hope this helps you.
Regards,
Jagan.