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

how to do sum of numeric data in bars

In Excel data sheet for particular user data(numeric) is present in date wise.I want to show those data in Bars according to month wise with sum(present data(numeric)).

Example:-for the months of February data is 4,5,6

output should be for the month February is 15.Means in bar for month of February should be 15 as one bar which is sum.

Can any one give some idea on this?

5 Replies
jonathandienst
Partner - Champion III
Partner - Champion III

Hi

Assuming that you are loading the date from Excel in the field name 'Date', then add a month field like this:

     LOAD

          ...

          Date,

          Month(Date) As Month,

          ...

     FROM ....

and then use Month as the dimension.

Hope that helps

Jonathan

PS this is a very simple solution. If your data spans multiple years, you may need to do the same with Year(Date), or use a master calendar (search this site for more information).

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
Not applicable
Author

Date is stored in dd/mm/yy format in  data sheet while implementing above,  month is coming in numeric format , which is the general format in excel for that date/month.I have taken Month as a dimension and sum(Data) as expression

Can any one give some idea on this?

Not applicable
Author

Can any one give some information on above situation?

jagan
Luminary Alumni
Luminary Alumni

Hi,

Hope attached file helps you.

Regards,

Jagan.

Not applicable
Author

Answer is not clear, in attached sheet no data present.