Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to use group by

Hi

I have a dataset

col1 col2   amount  policynumber

01     01       500              45

01    01        600              45

01    02        500              50

01   01        400               50

03   01        800               60

I need to match the col1 and col2 and group

I created a temp table

LOAD * INLINE [

KEY

01-01

01-02;

Table:

Load

------

Where Exists(KEY, [Tran-Type]&'-'& [Acct-Ln]);Where Exists(KEY, [Tran-Type]&'-'& [Acct-Ln]);

now I want to group amount by policy numbers.Here i want to exclude 03 -1 policy number i.e 60

Thanks

1 Reply
Not applicable
Author

Hi Pavan,

not sure I get what you are after but the below is basically how you would do a group by statement and check col1 vs col2 is equal

Test:

Load

policynumber,

Sum(amount) As amount

Resident Table

Where col1=col2

Group by policynumber

;

hope that helps

Joe