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

How to Perform the quarter and sem calculation

Hi,

i have a data for a year 2009 with jan,feb,mar........dec. two fields year and sales

how to calculate the sales for quarter and semester...

pls..help me out

thanks in advance

2 Replies
Not applicable
Author

Hi,

Hope attached sample application will help you............

Define Quarter and Semester According to your requirement...

Regards,

Nilupa

renjithpl
Specialist
Specialist

Hi,

Try this





Directory;

LOAD

Date,

month(Date) as Month,

Quartername(Date) as Quarter,

'Sem'& ceil(month(Date)/6) as Semester

FROM

TEst3.xlsx

(

ooxml, embedded labels, table is Sheet1)

;

Regards

Ren