Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Group by two dimensions

Good day.

There is my model in attached file.

In load script i calculate max date, where quantity > 0 grouping by Spoits.

How can i calculate the same, but grouping by Spoints and ProductType?

Thank you!

Labels (1)
1 Solution

Accepted Solutions
PradeepReddy
Specialist II
Specialist II

Use the both the dimensions in group statement..

ex:

Group By Spoint,ProductType;

View solution in original post

3 Replies
PradeepReddy
Specialist II
Specialist II

Use the both the dimensions in group statement..

ex:

Group By Spoint,ProductType;

its_anandrjs
Champion III
Champion III

Then write like

Join

Load

  Spoint,

  ProductType,

  Date(Max(Date))

Resident Input Where Quantity>0 Group By Spoint,ProductType;

avinashelite

Hi,

Please find the attachment for the solution.