Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All ,
I have a table. having fields project_no, region and milestone_type-1,milestone_type-2.
the requirement is to display a straight table with fields region ,milestone_type-1,milestone_type-2.
Region | milestone_type-1 | milestone_type-2 |
---|---|---|
Australia | 23 | 76 |
North America | 56 | 34 |
but the issue here is , the current table is giving as many times as the entry,I want to group by the 2nd and 3rd dimension by the Region dimension.like
Region | milestone_type-1 | milestone_type-2 |
---|---|---|
Australia | 22 | 45 |
Australia | 33 | 4657 |
North America | 54 | 89 |
North America | 56 | 89 |
Please help, it is very critical.
PS: There are other constraints that I can only use milestone_type-1,milestone_type-2 in dimensions because there has to be triggers based on those fields selection, So I cant use them in Expression.
load
sum(milestone_type-1) as milestone_type-1,
sum(milestone_type-2) as milestone_type-2,
Region
From TableName group by Region;
Hi Gizzel,
Can you elaborate on your question?
As you show your result, QlikView shows each row that has a unique combination of values. So actually it works as it should. Do you want to show the latest entry on a country, do you want to show the maximum value of milestone_type2?
The information you posted is not enough to solve the problem.
Regards,
Jop
this will not suffice my requirement as when I ll drill by project, it will not.
Hi Jop,
taking avg first level will work. but there must be a relation between the avg(milestone_type2),avg(milestone_type1) and project_no.