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

Creating a histogram using data spanning two tables

Hello community!

Background:

I have two data tables, one showing value of payments over time by individuals split by types of payment, the second showing account status for each individual by year:

Table 1: payments over time

Individual IDTax Year EndedPayment typePayment amount
12010Voluntary0
12010Scheduled0
12011Voluntary5
12011Scheduled15
12012Voluntary15
12012Scheduled5
22010Voluntary4
22010Scheduled10
22011Voluntary10
22011Scheduled15
22012Voluntary0
22012Scheduled6


Table 2: account status over time

Individual IDTax Year EndedIs Account Active
120100
120111
120121
220101
220111
220121


I would like to create a histogram showing the number of active accounts split between £10 total payment bands in each year.  Once I've cracked this, I'd then like to be able to filter between Voluntary and Scheduled payments.

My current syntax is as follows:

Dimension1:  = class(sum(Payment Amount), 10)   //intended to create £10 total payment bandings.

Dimension2: [Tax Year Ended]

Expression: Sum(Is Account Active)  //Adds the number of active accounts for the combination of payment amount and year

The above results in the X axist of my chart reading as "//Error in calculated dimension".

I'm quite new to Qlikview but have tried a whole range of approaches to cracking this without any success.  Maybe it needs a completely different approach.  I'd really appreciate it if somebody out there could help me.  If possible I'd like to solve this without having to change the structure of my input data.

Thanks in advance

John

1 Solution

Accepted Solutions
sridhar240784
Creator III
Creator III

Mistake was on your field name. QlikView is case sensitive.You dont have any field Called "amount" it is "Amount".

This was causing the issue. Find the corrected expression below.

=CLASS(AGGR(Sum ([Amount]),[Tax Year Ended]),[Repayment Bandings])

Have a look at the attched application.

Hope this helps you.

-Sridhar

View solution in original post

8 Replies
jagannalla
Partner - Specialist III
Partner - Specialist III

can you attach sample file.

sridhar240784
Creator III
Creator III

Hi,

You Expression should be some thing like below.

=CLASS(AGGR(Sum ([Payment amount]),[Tax year ended]),10)

You need to enclose your Sum([Payment amount]) with aggr() function, since you are using expression in dimension.

Have a look at the attached application.

Hope this helps you.

-Sridhar

Not applicable
Author

Thanks

This is hugely helpful.

I've looked at your sample file and implemented the expression in the real thing.  Unfortunately it's putting everything in the 0-10 category when I know there should be a wider spread.

One difference I noted between your file and mine is that you've set up extra key fields in the script.  Are these important?

I don't have them and Qlikview is creating new "Syn" tables to link my tables together.  Could this be what's going wrong?

Thanks

John

sridhar240784
Creator III
Creator III

Extra key field which i have created is only to avoid "syn" table.

Having "Syn" table is not wrong but it is not advisable to have in Qlikview because it will slow down the Qlikview application performance if you work with huge data.

Now i have changed my data model also like your data model i.e. with "syn" table. Please have a look at the table and if this is not helping you, post your sample application. so that we can help you.

-Sridhar

Not applicable
Author

Thanks for the advice on synthetic tables.  Good to know.

Still haven't found a way around the problem so here is a sample file.

Note that I there are a couple of extra fields and some extra payment types in this version.

Thanks

John

Not applicable
Author

Also note that I've defined the repayment banding sizes as a variable.

sridhar240784
Creator III
Creator III

Mistake was on your field name. QlikView is case sensitive.You dont have any field Called "amount" it is "Amount".

This was causing the issue. Find the corrected expression below.

=CLASS(AGGR(Sum ([Amount]),[Tax Year Ended]),[Repayment Bandings])

Have a look at the attched application.

Hope this helps you.

-Sridhar

Not applicable
Author

Excellent.

I had to make one further adjustment.  Qlikview was giving the banding that the overall total for the year sat in, rather than the number of individuals in each band in each year.  I fixed this by including the individual in the AGGR function as follows:

=CLASS(AGGR(-Sum ([Amount]),[Tax Year Ended], [Simulation number]),[Repayment Bandings])

The image below is exactly what I was aiming for!

image.png

Huge huge thanks.

Next I'd like to see if I can show the y axis values as a percentage of the total number of active accounts each year.  The difficult bit is setting up a denominator which excludes the filters we set up as part of the dimensions.  At the moment I have this which is returning no data:

=sum(Active)/sum(total <[Tax Year Ended], CLASS(AGGR(-Sum ([Amount]),[Tax Year Ended], [Simulation number]),[Repayment Bandings]>Active)

Any ideas about how I can sort this out?

Thanks

John