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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Kliqview "group" command line strange behaviour

Something is strange with command "GROUP BY". This is my test case. When i use group by in my query from QVD, i try to concat the fields UCCONO and UCDIVI for my primary key. Unfortunately UCCONO & UCDIVI are empty... But in my QVD, i have no row empty for these fields.. What is wrong ?

CASE 1 : (Without GROUP BY)

LOAD

UCCONO &'|'& UCDIVI &'|'& UCFACI &'|'& UCORNO as KEY_OOHEAD_OSBST FROM ../../020_QVD/OSBSTD.QVD (qvd) ;

**********************

The result is : 500|001|E01|0002

CASE 2 : With GROUP BY

LOAD

UCCONO &'|'& UCDIVI &'|'& UCFACI &'|'& UCORNO as KEY_OOHEAD_OSBS,

sum([UCIVQT]) as [UCIVQT : Qté livrée ]

FROM

../../020_QVD/OSBSTD.QVD (qvd) GROUP BY UCCONO,UCDIVI,UCFACI,UCCUNO,UCORNO,UCPONR,UCIVNO,UCORIG;









**********************

The result is : ||E01|0002 50

1 Reply
Not applicable
Author

Ok I use resident and it works