Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Chart missing dimensions

I have created a chart with the following dimensions:

Screen Shot 2016-05-05 at 09.13.57.png

The expression for the chart is as follows:

Screen Shot 2016-05-05 at 09.13.33.png

The resulting chart is.below. The chart is not showing the months June, July, August and September.  What could be wrong?

Screen Shot 2016-05-05 at 09.12.48.png

1 Solution

Accepted Solutions
sunny_talwar

What if you remove the MonthsAgoYTD set analysis and use FMonth and FYear. Does that bring back those months? Just trying to check where might the issue be.

View solution in original post

7 Replies
Kushal_Chawda

May be you don't have amount for this Months or it is zero.

saumyashah90
Specialist
Specialist

hi,

This is the reason because you dont have data for those months(FMonth).

If you want to achieve the same you need to built master calendar.

or

Do inline

Just add this script have same field name

Load * Inline [

FMonth,Num

Jan,1

Feb,2

Mar,3

Apr,4

May,5

Jun,6

Jul,7

Aug,8

Sept,9

Oct,10

Nov,11

Dec,12

];

sunny_talwar

On the similar lines, may be try unchecking 'Suppress-Zero Values'  option to see if those months come up with 0 value

Anonymous
Not applicable
Author

Thanks Kushal

You are right there is something wrong with the expression and fiscal years.  I changed the dimensions to calendar month and calendar year and expression to 'Sum(Amount)' and i get the following:

Screen Shot 2016-05-05 at 10.22.49.png

All months are represented so it is something to do with the fiscal calendar in my opinion.

Anonymous
Not applicable
Author

Many thanks Saumya, see my response to Kushal above.

sunny_talwar

What if you remove the MonthsAgoYTD set analysis and use FMonth and FYear. Does that bring back those months? Just trying to check where might the issue be.

Anonymous
Not applicable
Author

You are right Sunny, i removed the expression with MonthsAgoYTD and replace with ordinary Sum(Amount) and this give the right chart.

Screen Shot 2016-05-05 at 10.37.21.png