Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have a requirement wherein all the months must get displayed in the chart irrespective of the month selected.I have added month as a dimension in the chart.Please let me know how this could be acheived
Use set analysis in the expression of the chart like:
=Sum({<YourMonthField>}Sales)
Use set analysis in the expression of the chart like:
=Sum({<YourMonthField>}Sales)
Hi
You can use any of the below expressions:
1. Sum({<Month>}Value)
2. Sum({<Month=>}Value)
3. Sum({1}Value)
Kindly replace Month & Value with your Application Field Names.
Regards
Aviral Nag
HI,
Just exclude the month values by giving MonthDimensionName= in your set analysis statement
=Sum({<MonthDimensionName=>}MeasureName)
Note: Replace MonthDimensionName and MeasureName with your actual dimension names.
Regards,
Jagan.