Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
suvechha_b
Creator III
Creator III

can anyone help me out??

select period_key,product_key,sum(actual_receipts_qty)

from jnbvdw02a.edw.dbo.fact_mps

group by period_key,product_key

having product_key='73219' and period_key>=135

how to projected this "group by" in qlikview model???

3 Replies
tresesco
MVP
MVP

try replacing 'having' with 'where'

Not applicable

In qlikview also you can use group by, for having use where

Not applicable

Data_Temp:

Load *

from sorce table....Where product_key='73219' and period_key>='135';

Data:

Load *

Then groupBY

resident Data_Temp;

Drop table Data_Temp;