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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
xyz1
Creator III
Creator III

?

.

1 Solution

Accepted Solutions
sunny_talwar
MVP
MVP

Try this

FORECAST:
CrossTable (Month, For_Quantity,5) 
LOAD 'Sales' as Flag,
	"Dom/Exp",
    RGP_CODE,
	"State/Country" as state,
	Product as PRODUCT_CICS,
    "M 1/19" as Jan,
    "M 2/19" as Feb,
    "M 3/19" as Mar,
    "M 4/19" as Apr,
    "M 5/19" as May,
    "M 6/19" as Jun,
    "M 7/19" as Jul,
    "M 8/19" as Aug,
    "M 9/19" as Sep,
    "M 10/19" as Oct,
    "M 11/19" as Nov,
    "M 12/19" as Dec
FROM [lib://Forecasts/Locked_Fcst_20180727 -Indian Origin.xlsx]
(ooxml, embedded labels, table is Sheet1);

FINAL_FORECAST:
NoConcatenate
LOAD Flag,
	"Dom/Exp",
        RGP_CODE,
	state,
	PRODUCT_CICS,
        Month(Date#(Month, 'MMM')) as Month,
        For_Quantity
Resident FORECAST;

DROP TABLE FORECAST;

SALES:
LIB CONNECT TO 'PCSOFT';
Concatenate
LOAD Factory,
    month("DATE") as Month,
    "IM_CODE",
    PurgeChar("IM_CODE", '1234567890') as RGP_CODE,
    QTY as Sales_Quantity,
    state;
SQL SELECT *
FROM BI.dbo.Salepricing;

View solution in original post

1 Reply
sunny_talwar
MVP
MVP

Try this

FORECAST:
CrossTable (Month, For_Quantity,5) 
LOAD 'Sales' as Flag,
	"Dom/Exp",
    RGP_CODE,
	"State/Country" as state,
	Product as PRODUCT_CICS,
    "M 1/19" as Jan,
    "M 2/19" as Feb,
    "M 3/19" as Mar,
    "M 4/19" as Apr,
    "M 5/19" as May,
    "M 6/19" as Jun,
    "M 7/19" as Jul,
    "M 8/19" as Aug,
    "M 9/19" as Sep,
    "M 10/19" as Oct,
    "M 11/19" as Nov,
    "M 12/19" as Dec
FROM [lib://Forecasts/Locked_Fcst_20180727 -Indian Origin.xlsx]
(ooxml, embedded labels, table is Sheet1);

FINAL_FORECAST:
NoConcatenate
LOAD Flag,
	"Dom/Exp",
        RGP_CODE,
	state,
	PRODUCT_CICS,
        Month(Date#(Month, 'MMM')) as Month,
        For_Quantity
Resident FORECAST;

DROP TABLE FORECAST;

SALES:
LIB CONNECT TO 'PCSOFT';
Concatenate
LOAD Factory,
    month("DATE") as Month,
    "IM_CODE",
    PurgeChar("IM_CODE", '1234567890') as RGP_CODE,
    QTY as Sales_Quantity,
    state;
SQL SELECT *
FROM BI.dbo.Salepricing;